2nd_Sem_Bogachev/2025.05.23/10Ex/node.h
2025-05-19 21:20:19 +03:00

14 lines
143 B
C

#ifndef NODE_H
#define NODE_H
#define LEN_STR 1234
struct _node;
typedef struct _node
{
char *string;
struct _node *next;
} node;
#endif