Add Diverge

This commit is contained in:
AZEN-SGG 2025-04-30 17:00:05 +03:00
parent 00bd9b5724
commit e5f3f4c6e2
18 changed files with 642 additions and 1 deletions

View 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