1 /* $Id: libret.h,v 1.7 2020-09-27 19:45:56 phil Exp $ */
2 
3 /* return values for library routines */
4 
5 enum io_read_ret {
6     IO_OK,
7     IO_EOF,
8     IO_ERR
9 };
10 
11 enum io_include_ret {
12     INC_FAIL,
13     INC_SKIP,
14     INC_OK
15 };
16 
17 enum io_read_ret io_read(struct descr *,struct spec *sp);
18 enum io_include_ret io_include(struct descr *,struct spec *);
19