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

13 lines
149 B
C

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