1 #ifndef PARSESUP_H
2 #define PARSESUP_H
3 
4 #include "parse.h"
5 
6 char *next_line(int fd);
7 status_e parse_line( char *line, char **namep, enum assign_op *opp,
8 	pset_h values);
9 void skip_entry(int fd);
10 int line_has_only_1_char(const char *line, char ch);
11 
12 #endif
13