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

12 lines
135 B
C

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