File: parselib.h

package info (click to toggle)
dietlibc 0.30-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 8,604 kB
  • ctags: 18,844
  • sloc: ansic: 52,412; asm: 10,942; cpp: 1,831; makefile: 675; sh: 104; perl: 62
file content (25 lines) | stat: -rw-r--r-- 934 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* parse lib: parse mmapped text with \n terminated lines */

/* a memory buffer. */
struct state {
  const char* buffirst;/* pointer to the buffer */
  size_t buflen;		/* length of the buffer */
  size_t cur;			/* already parsed bytes */
};

/* open and mmap file, fill in struct state */
void __prepare_parse(const char* filename,struct state* s);
/* mmap a file already open, fill in struct state */
void __fprepare_parse(int fd, struct state* s);
/* unmap file */
void __end_parse(struct state* s);

/* return the length of the matching string, 0 on error */
/* match while pred returns nonzero */
size_t __parse(struct state* s,int (*pred)(int ch));

size_t __parse_ws(struct state* s);		/* skip ' ' or '\t', break at '\n' or '#' */
size_t __parse_nws(struct state* s);		/* skip non-whitespace, break at '\n' or '#' */
size_t __parse_1(struct state* s,char c);	/* skip to c */

size_t scan_ulong(const char* s,unsigned long* l);