tokens_ttl.h 1.0 KB

1234567891011121314151617181920212223
  1. #define T_PERIOD 1
  2. #define T_SEMICOLON 2
  3. #define T_COMMA 3
  4. #define T_STRING 4
  5. #define T_INTEGER 5
  6. #define T_DOUBLE 6
  7. #define T_DECIMAL 7
  8. #define T_BOOLEAN 8
  9. #define T_QNAME 9
  10. #define T_BNODE_ID 10
  11. #define T_IRIREF 11
  12. #define T_LANGTAG 12
  13. #define T_PREFIX 13
  14. #define T_COLON 14
  15. #define T_EOF 15
  16. #define T_WS 16
  17. #define T_BASE 17
  18. #define T_RDF_TYPE 18
  19. #define T_DTYPE_MARKER 19
  20. #define T_LBRACKET 20
  21. #define T_RBRACKET 21
  22. #define T_LPAREN 22
  23. #define T_RPAREN 23