Guest User

Untitled

a guest
Sep 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. RT_FUNC(mStringFromCharArray, R_STRING, P_CHAR_ARRAY(str));
  2.  
  3. RT_FUNC(mStringFromInt, R_STRING, P_INT(i));
  4.  
  5. RT_FUNC(mStringFromFloat, R_STRING, P_FLOAT(f));
  6.  
  7. RT_FUNC(mStringToInt, R_INT, P_STRING(str));
  8.  
  9. RT_FUNC(mStringToFloat, R_FLOAT, P_STRING(str));
  10.  
  11. RT_FUNC(mStringAdd, R_STRING, P2(P_STRING(s1), P_STRING(s2)));
  12.  
  13. RT_FUNC(mStringToBool, R_BOOL, P_STRING(str));
Add Comment
Please, Sign In to add comment