Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

pgenheaders.h 1.2 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
  1. #ifndef Py_PGENHEADERS_H
  2. #define Py_PGENHEADERS_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. /* Include files and extern declarations used by most of the parser. */
  7. #include "Python.h"
  8. PyAPI_FUNC(void) PySys_WriteStdout(const char *format, ...)
  9. Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
  10. PyAPI_FUNC(void) PySys_WriteStderr(const char *format, ...)
  11. Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
  12. #define addarc _Py_addarc
  13. #define addbit _Py_addbit
  14. #define adddfa _Py_adddfa
  15. #define addfirstsets _Py_addfirstsets
  16. #define addlabel _Py_addlabel
  17. #define addstate _Py_addstate
  18. #define delbitset _Py_delbitset
  19. #define dumptree _Py_dumptree
  20. #define findlabel _Py_findlabel
  21. #define freegrammar _Py_freegrammar
  22. #define mergebitset _Py_mergebitset
  23. #define meta_grammar _Py_meta_grammar
  24. #define newbitset _Py_newbitset
  25. #define newgrammar _Py_newgrammar
  26. #define pgen _Py_pgen
  27. #define printgrammar _Py_printgrammar
  28. #define printnonterminals _Py_printnonterminals
  29. #define printtree _Py_printtree
  30. #define samebitset _Py_samebitset
  31. #define showtree _Py_showtree
  32. #define tok_dump _Py_tok_dump
  33. #define translatelabels _Py_translatelabels
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37. #endif /* !Py_PGENHEADERS_H */
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...