mirror of
https://github.com/ada-dmitry/prog.l_ada.git
synced 2026-09-24 01:00:15 +00:00
11 lines
188 B
C
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; |