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

13 lines
170 B
C

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