global rename

This commit is contained in:
ada-dmitry
2023-05-10 21:55:33 +03:00
parent 350c719381
commit 0cf222ed89
21 changed files with 9 additions and 7 deletions
+11
View File
@@ -0,0 +1,11 @@
#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;