Advertisement
Guest User

Untitled

a guest
May 27th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. {
  2. return libfunc_objectmemberkeys;
  3. }
  4. else if(strcmp(id, "objecttotalmembers") == 0)
  5. {
  6. return libfunc_objecttotalmembers;
  7. }
  8. else if(strcmp(id, "objectcopy") == 0)
  9. {
  10. return libfunc_objectcopy;
  11. }
  12. else if(strcmp(id, "totalarguments") == 0)
  13. {
  14. return libfunc_totalarguments;
  15. }
  16. else if(strcmp(id, "argument") == 0)
  17. {
  18. return libfunc_argument;
  19. }
  20. else if(strcmp(id, "typeof") == 0)
  21. {
  22. return libfunc_typeof;
  23. }
  24. else if(strcmp(id, "strtonum") == 0)
  25. {
  26. return libfunc_strtonum;
  27. }
  28. else if(strcmp(id, "sqrt") == 0)
  29. {
  30. return libfunc_sqrt;
  31. }
  32. else if(strcmp(id, "cos") == 0)
  33. {
  34. return libfunc_cos;
  35. }
  36. else if(strcmp(id, "sin") == 0)
  37. {
  38. return libfunc_sin;
  39. }
  40. else
  41. {
  42. return NULL;
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement