2nd_Sem_Bogachev/2025.02.28/1Ex/io_status.h
2025-03-02 14:38:34 +03:00

14 lines
153 B
C

#ifndef IO_STATUS_H
#define IO_STATUS_H
#define LEN 1234
typedef enum _io_status
{
SUCCESS,
ERROR_OPEN,
ERROR_READ,
ERROR_MEM
} io_status;
#endif