function-declaration
Вопросы и ответы
Вопрос или проблема //my_struct.h typedef struct my_struct_t *my_handle; void f1(my_handle handle); void f2(my_handle handle); //my_struct.c #include "my_struct.h" typedef struct { int a; int b; } my_struct_t; //Является ли это определение законным?