2nd_Sem_Bogachev/2025.03.28/01Ex/io_status.h
2025-03-23 18:47:53 +03:00

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