Files
prog.l_ada/main/arr_xor/head.h
T
2023-04-25 08:23:47 +03:00

18 lines
327 B
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#define N 3
#define LEN 3
typedef struct Node {
struct Node* next;
struct Node* prev;
char name[LEN];
} Node;
void node_print(Node* n);
Node get(Node* node, int n);
Node* xor_find(Node* n1, Node* n2);
Node* add_tail(Node* n, char s[]);