typedef struct map_list
{
int value;
t_map_list *next;
char key[1];
} t_map_list;
t_map_list *next;这行报错:
error: expected specifier-qualifier-list before ‘t_map_list’
如何解决?
|
|
如何解决? |
||
|
|
|
|
所以要改成这样:
|
||
|
|