2nd_Sem_Bogachev/2025.05.02/04Ex/status.h
2025-04-30 21:24:42 +03:00

10 lines
105 B
C

#ifndef STATUS_H
#define STATUS_H
typedef enum _status {
SUCCESS,
RUN_TIME,
EQUAL,
} status;
#endif