2nd_Sem_Bogachev/2025.05.23/01Ex/node.h
2025-05-18 18:31:04 +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