Initial import from http://www.droids-corp.org/hg/libcmdline/rev/db316e4289a1
[libcmdline.git] / src / genconf / parser_common.h
1 /*
2  * return true if line is empty or contains only spaces/comments
3  */
4 int line_is_empty(const char *buf);
5
6 /* if buf is a string surrounded by simple or double quotes, return 0
7  * and fill *start and *end to the position of quotes. Else, return
8  * -1. */
9 int remove_quote(const char *buf, int *start, int *end);