mirror of
https://github.com/ada-dmitry/prog.l_ada.git
synced 2026-09-24 09:10:14 +00:00
17 lines
336 B
C
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); |