PageRenderTime 42ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Lib/pike/pikekw.swg

#
Unknown | 55 lines | 47 code | 8 blank | 0 comment | 0 complexity | d9dde04961d6a37b61eb61b9435f60c2 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. #ifndef PIKE_PIKEKW_SWG_
  2. #define PIKE_PIKEKW_SWG_
  3. /* Warnings for Pike keywords */
  4. #define PIKEKW(x) %namewarn("314: '" #x "' is a pike keyword") #x
  5. /*
  6. from
  7. http://www.http://docs.linux.cz/pike/tutorial_C.html
  8. */
  9. PIKEKW(array);
  10. PIKEKW(break);
  11. PIKEKW(case);
  12. PIKEKW(catch);
  13. PIKEKW(continue);
  14. PIKEKW(default);
  15. PIKEKW(do);
  16. PIKEKW(else);
  17. PIKEKW(float);
  18. PIKEKW(for);
  19. PIKEKW(foreach);
  20. PIKEKW(function);
  21. PIKEKW(gauge);
  22. PIKEKW(if);
  23. PIKEKW(inherit);
  24. PIKEKW(inline);
  25. PIKEKW(int);
  26. PIKEKW(lambda);
  27. PIKEKW(mapping);
  28. PIKEKW(mixed);
  29. PIKEKW(multiset);
  30. PIKEKW(nomask);
  31. PIKEKW(object);
  32. PIKEKW(predef);
  33. PIKEKW(private);
  34. PIKEKW(program);
  35. PIKEKW(protected);
  36. PIKEKW(public);
  37. PIKEKW(return);
  38. PIKEKW(sscanf);
  39. PIKEKW(static);
  40. PIKEKW(string);
  41. PIKEKW(switch);
  42. PIKEKW(typeof);
  43. PIKEKW(varargs);
  44. PIKEKW(void);
  45. PIKEKW(while);
  46. #undef PIKEKW
  47. #endif //PIKE_PIKEKW_SWG_