Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你的原型应该是:
enum command_type scan(char *buffer);
由于您没有typedef在枚举声明中添加 a 。
typedef
使用您的代码编译器无法理解. 通常会使用:command_typetypedef
command_type
//头文件
typedef enum {....} command_type;
//C文件
command_type scan(char *buffer)
有了这个,您不必记住要继续添加enum无处不在。
enum