13 lines
149 B
C
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
|