File: ifparser.h

package info (click to toggle)
shush 1.2.3-2
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 884 kB
  • ctags: 559
  • sloc: ansic: 5,502; sh: 153; lex: 69; makefile: 68; yacc: 54; awk: 31
file content (20 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
** Copyright (C) 2003 Christophe Kalt
**
** This file is part of shush,
** see the LICENSE file for details on your rights.
**
** $Id: ifparser.h 1404 2008-03-08 23:25:46Z kalt $
*/

#if !defined(_IFPARSER_H_)
# define _IFPARSER_H_

void ifparser_init(char *);
int ifparser_lex(void);
int ifparser_parse(void);

extern int ifparser_result;
extern const char *ifparser_errmsg;

#endif