Files
prog.l_ada/Home/PL/HW/Stack Calculator/head.h
T
2023-04-17 21:29:57 +03:00

17 lines
336 B
C

#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);