Код: Выделить всё
typedef struct
{
int bar;
} foo;
Код: Выделить всё
typedef struct foo
{
int bar;
} foo;
Подробнее здесь: https://stackoverflow.com/questions/793 ... ry-c-users
Код: Выделить всё
typedef struct
{
int bar;
} foo;
Код: Выделить всё
typedef struct foo
{
int bar;
} foo;