Files
prog.l_ada/Home/PL/Lessons/04.04/head.h
T
2023-04-04 14:27:55 +03:00

11 lines
188 B
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
typedef struct Node {
int x;
struct Node* next;
struct Node* prev;
char name[STR_LEN];
} Node;