Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1234567891011121314151617181920212223242526272829303132
  1. typedef unsigned char symbol;
  2. /* Or replace 'char' above with 'short' for 16 bit characters.
  3. More precisely, replace 'char' with whatever type guarantees the
  4. character width you need. Note however that sizeof(symbol) should divide
  5. HEAD, defined in header.h as 2*sizeof(int), without remainder, otherwise
  6. there is an alignment problem. In the unlikely event of a problem here,
  7. consult Martin Porter.
  8. */
  9. struct SN_env {
  10. symbol * p;
  11. int c; int l; int lb; int bra; int ket;
  12. symbol * * S;
  13. int * I;
  14. };
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. extern struct SN_env * SN_create_env(int S_size, int I_size);
  19. extern void SN_close_env(struct SN_env * z, int S_size);
  20. extern int SN_set_current(struct SN_env * z, int size, const symbol * s);
  21. #ifdef __cplusplus
  22. }
  23. #endif