Task 4 is done!
This commit is contained in:
parent
62add41f64
commit
22ef2dda9b
18 changed files with 332 additions and 48 deletions
16
2025.05.02/04Ex/io_status.h
Normal file
16
2025.05.02/04Ex/io_status.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#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"
|
||||
#define ERR_FUNC "Error: Algorithm is not applicable!"
|
||||
|
||||
typedef enum _io_status
|
||||
{
|
||||
SUCCESS,
|
||||
ERROR_OPEN,
|
||||
ERROR_READ
|
||||
} io_status;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue