15 lines
254 B
C
15 lines
254 B
C
#ifndef IO_STATUS_H
|
|
#define IO_STATUS_H
|
|
|
|
#define ERR_MEM "Error: Not enough memory!"
|
|
#define ERR_OPEN "Error: Cannot open file"
|
|
#define ERR_READ "Error: Cannot read file"
|
|
|
|
typedef enum _io_status
|
|
{
|
|
SUCCESS,
|
|
ERROR_OPEN,
|
|
ERROR_READ
|
|
} io_status;
|
|
|
|
#endif
|