We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
C file:
typedef enum Test { A1L2, A = A1L2, } Test;
Script:
from pyclibrary import CParser print(CParser(["/tmp/test.h"]).defs)
Get
{'types': {'Test': Type('enum Test A1L2 A A1L2')}, 'variables': {}, 'fnmacros': {}, 'macros': {}, 'structs': {}, 'unions': {}, 'enums': {}, 'functions': {}, 'values': {'A1L2': 0, 'A': None}}
The text was updated successfully, but these errors were encountered:
When evaluating the value, the 1L in A1L2 is treated as an integer literal and thus rstripped.
1L
A1L2
Sorry, something went wrong.
No branches or pull requests
C file:
Script:
Get
The text was updated successfully, but these errors were encountered: