mirror of
https://github.com/ada-dmitry/prog.l_ada.git
synced 2026-09-24 09:10:14 +00:00
added xor
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <time.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
|
||||
typedef struct node {
|
||||
int x;
|
||||
struct node* next;
|
||||
}Plate;
|
||||
|
||||
void print_plates(Plate* plates);
|
||||
Plate* push(Plate* plates, int x);
|
||||
Plate* remove_plate(Plate* plates);
|
||||
int pop(Plate** plates);
|
||||
int len(Plate* plates);
|
||||
int isnm(char *str);
|
||||
Reference in New Issue
Block a user