Revision 3218265400f730cadd42046af994f2ac7e87c9e8 authored by Edzer J. Pebesma on 11 June 2004, 16:39:05 UTC, committed by cran-robot on 11 June 2004, 16:39:05 UTC
1 parent 9704535
Raw File
lex.h
/* parse.y & lex.l */

#if defined(__cplusplus)
extern "C" {
#endif

/* parse.y: */
int parse_file(const char *fileName);
int parse_cmd(const char *cmd, const char *fname);
void parse_gstatrc(void);
#ifdef VARIO_H
int read_variogram(VARIOGRAM *v, const char *source);
#endif

#ifdef DATA_H
int read_vector(D_VECTOR *d, char *fname);
#endif

/* lex.l: */
int yylex(void);
void lex_error(void);
void set_lex_source(const char *source, const char *fname);

#if defined(__cplusplus)
}
#endif
back to top