Add Linux dist

This commit is contained in:
AZEN-SGG 2025-03-27 21:09:13 +03:00
parent 0a8c75a0cf
commit a5d5880f8a
18 changed files with 1892 additions and 0 deletions

13
2025.03.28/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