File: parse.h

package info (click to toggle)
dictd 1.9.15-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,760 kB
  • ctags: 3,266
  • sloc: ansic: 28,734; sh: 4,576; makefile: 1,002; perl: 410; yacc: 280; cpp: 275; lex: 217
file content (38 lines) | stat: -rw-r--r-- 1,579 bytes parent folder | download | duplicates (2)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
/* parse.h -- Header file for visible prs_XXX functions
 * Created: Sun Nov 19 13:21:21 1995 by faith@dict.org
 * Revised: Sat Mar 30 11:54:49 2003 by faith@dict.org
 * Copyright 1994-1998, 2002 Rickard E. Faith (faith@dict.org)
 *
 * This library is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Library General Public License as published
 * by the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 *
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 * 
 * $Id: parse.h,v 1.2 2003/10/14 11:54:15 cheusov Exp $
 */

#ifndef _PARSE_H_
#define _PARSE_H_

#include <stdio.h>
#include <stdarg.h>

extern void   prs_set_debug( int debug_flag );
extern void   prs_set_cpp_options( const char *cpp_options );
extern void   prs_file_pp( const char *filename, const char *preprocessor );
extern void   prs_file( const char *filename );
extern void   prs_file_nocpp( const char *filename );
extern void   prs_stream( FILE *str, const char *name );
extern int    prs_make_integer( const char *string, int length );
extern double prs_make_double( const char *string, int length );

#endif