cocell.h 423 B

1234567891011121314151617181920212223242526
  1. #ifndef cocell_H_INCLUDED
  2. #define cocell_H_INCLUDED
  3. typedef union CocelValue_ CocelValue;
  4. typedef struct Cocel_ Cocel;
  5. typedef Cocel * CocelFunction(Cocel * env, Cocel * args);
  6. #define COCEL_NCHARS (sizeof(double))
  7. union CocelValue_ {
  8. int integer;
  9. double number;
  10. void * pointer;
  11. CocelFunction * args;
  12. char chars[COCEL_NCHARS];
  13. Cocel * cell;
  14. };
  15. #endif