2nd_Sem_Bogachev/2025.05.23/dist/Krivoruchenko_SK/node.h
2025-05-19 20:33: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