chore(cleanup): replace legacy Matvei project with updated Linux-based version

- 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
This commit is contained in:
AZEN-SGG 2025-03-25 23:35:44 +03:00
parent f44d7a9a6b
commit 2d77179904
67 changed files with 4581 additions and 2 deletions

13
2025.03.21/dist/Linux/io_status.h vendored Normal file
View file

@ -0,0 +1,13 @@
#ifndef IO_STATUS_H
#define IO_STATUS_H
#define LEN 1234
typedef enum _io_status
{
SUCCESS,
ERROR_OPEN,
ERROR_READ
} io_status;
#endif