views:

232

answers:

1

If i need to return a long i simply use the RETURN_LONG macro. But what do i do if i need to return an unsigned long long. If i use this macro the data gets corrupted...

+2  A: 

Return it as a string like bcmath does.

VolkerK