Unknown uint8_t type in pycparser
问题 I am trying to parse a C function declaration. As it has uint8_t , uint16_t in it, pycparser is unable to recognize this type. typedef enum tagReturnCode {SUCCESS, FAIL} ReturnCode; typedef struct tagEntry { char* key; char* value; } Entry; typedef struct tagNode { Entry* entry; struct tagNode* next; } Node; typedef struct tagHash { unsigned int table_size; Node** heads; } Hash; void test(uint8_t res[], int* op1[], int op2[], char n); This is code that I want to parse and create ast of that,