2nd_Sem_Bogachev/2025.05.02/03Ex/status.h
2025-04-30 17:00:05 +03:00

12 lines
136 B
C

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