https://github.com/cran/gstat
Raw File
Tip revision: af8ccc8b8a790b242773330d81e540f2a4fecfbb authored by Edzer J. Pebesma on 17 September 2004, 14:57:36 UTC
version 0.9-14
Tip revision: af8ccc8
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