2nd_Sem_Bogachev/2025.05.02/08Ex/status.h
2025-05-01 09:16:08 +03:00

10 lines
105 B
C

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