2nd_Sem_Bogachev/2025.05.02/Example/status.h
2025-04-29 14:35:20 +03:00

10 lines
113 B
C

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