
- Removed obsolete Matvei source files (tasks 01–04, array/matrix/io_status modules, Makefile) - Introduced new Linux-compatible structure in Linux/Matvei - Updated build logic via new Makefile - Adjusted .gitignore to exclude new artifacts
13 lines
141 B
C
13 lines
141 B
C
#ifndef IO_STATUS_H
|
|
#define IO_STATUS_H
|
|
|
|
#define LEN 1234
|
|
|
|
typedef enum _io_status
|
|
{
|
|
SUCCESS,
|
|
ERROR_OPEN,
|
|
ERROR_READ
|
|
} io_status;
|
|
|
|
#endif
|