home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / pippy-0.6beta-src.tar.gz / pippy-0.6beta-src.tar / pippy-0.6beta-src / src / Include / other / intobject_c.h < prev    next >
C/C++ Source or Header  |  2000-12-21  |  2KB  |  39 lines

  1. #ifndef INTOBJECT_C_H
  2. #define INTOBJECT_C_H
  3.  
  4. #include "proto_defs.h"
  5. static PyObject *err_ovf Py_PROTO((char *)) SEG_INTOBJECT_C;
  6. static PyIntObject *fill_free_list() SEG_INTOBJECT_C;
  7.  
  8. UNARYFUNC_PROTO(int_neg, PyIntObject) SEG_INTOBJECT_C;
  9. UNARYFUNC_PROTO(int_pos, PyIntObject) SEG_INTOBJECT_C;
  10. UNARYFUNC_PROTO(int_abs, PyIntObject) SEG_INTOBJECT_C;
  11. UNARYFUNC_PROTO(int_invert, PyIntObject) SEG_INTOBJECT_C;
  12. UNARYFUNC_PROTO(int_int, PyIntObject) SEG_INTOBJECT_C;
  13. UNARYFUNC_PROTO(int_long, PyIntObject) SEG_INTOBJECT_C;
  14. UNARYFUNC_PROTO(int_float, PyIntObject) SEG_INTOBJECT_C;
  15. UNARYFUNC_PROTO(int_oct, PyIntObject) SEG_INTOBJECT_C;
  16. UNARYFUNC_PROTO(int_hex, PyIntObject) SEG_INTOBJECT_C;
  17. BINARYFUNC_PROTO(int_add, PyIntObject) SEG_INTOBJECT_C;
  18. BINARYFUNC_PROTO(int_sub, PyIntObject) SEG_INTOBJECT_C;
  19. BINARYFUNC_PROTO(int_mul, PyIntObject) SEG_INTOBJECT_C;
  20. BINARYFUNC_PROTO(int_div, PyIntObject) SEG_INTOBJECT_C;
  21. BINARYFUNC_PROTO(int_mod, PyIntObject) SEG_INTOBJECT_C;
  22. BINARYFUNC_PROTO(int_divmod, PyIntObject) SEG_INTOBJECT_C;
  23. BINARYFUNC_PROTO(int_lshift, PyIntObject) SEG_INTOBJECT_C;
  24. BINARYFUNC_PROTO(int_rshift, PyIntObject) SEG_INTOBJECT_C;
  25. BINARYFUNC_PROTO(int_and, PyIntObject) SEG_INTOBJECT_C;
  26. BINARYFUNC_PROTO(int_xor, PyIntObject) SEG_INTOBJECT_C;
  27. BINARYFUNC_PROTO(int_or, PyIntObject) SEG_INTOBJECT_C;
  28. TERNARYFUNC_PROTO(int_pow, PyIntObject) SEG_INTOBJECT_C;
  29. INQUIRY_PROTO(int_nonzero, PyIntObject) SEG_INTOBJECT_C;
  30. DESTRUCTOR_PROTO(int_dealloc, PyIntObject) SEG_INTOBJECT_C;
  31. PRINTFUNC_PROTO(int_print, PyIntObject) SEG_INTOBJECT_C;
  32. CMPFUNC_PROTO(int_compare, PyIntObject) SEG_INTOBJECT_C;
  33. REPRFUNC_PROTO(int_repr, PyIntObject) SEG_INTOBJECT_C;
  34. HASHFUNC_PROTO(int_hash, PyIntObject) SEG_INTOBJECT_C;
  35.  
  36.  
  37.  
  38. #endif /* INTOBJECT_C_H */
  39.