91 lines
2.3 KiB
C
91 lines
2.3 KiB
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/* Definitions shared by harbour.y and preprocessor */
|
|
|
|
#ifndef HB_PP_H_
|
|
#define HB_PP_H_
|
|
|
|
#include "hbsetup.h"
|
|
#include "hbdefs.h"
|
|
|
|
typedef struct _PATHNAMES { /* the list of pathnames to search with #include */
|
|
char *szPath;
|
|
struct _PATHNAMES *pNext;
|
|
} PATHNAMES;
|
|
|
|
typedef struct /* support for filenames */
|
|
{
|
|
char _buffer[ _POSIX_PATH_MAX+3 ];
|
|
char *path;
|
|
char *name;
|
|
char *extension;
|
|
} FILENAME;
|
|
|
|
struct _DEFINES;
|
|
typedef struct _DEFINES
|
|
{
|
|
char *name;
|
|
char *pars;
|
|
int npars;
|
|
char *value;
|
|
struct _DEFINES *last;
|
|
} DEFINES;
|
|
|
|
typedef struct
|
|
{
|
|
int com_or_xcom;
|
|
char *name;
|
|
char *mpatt;
|
|
char *value;
|
|
} COMMANDS, TRANSLATES;
|
|
|
|
#define STR_SIZE 8192
|
|
#define BUFF_SIZE 2048
|
|
#define INITIAL_ACOM_SIZE 200
|
|
|
|
#define SKIPTABSPACES(sptr) while ( *sptr == ' ' || *sptr == '\t' ) (sptr)++
|
|
|
|
#define PATH_DELIMITER "/\\"
|
|
#define IS_PATH_SEP( c ) (strchr(PATH_DELIMITER, (c))!=NULL)
|
|
#define OPT_DELIMITER "/-"
|
|
#define IS_OPT_SEP( c ) (strchr(OPT_DELIMITER, (c))!=NULL)
|
|
|
|
/* HBPP.C exported functions */
|
|
|
|
extern int ParseDirective( char* );
|
|
extern int ParseExpression( char*, char* );
|
|
extern int pp_RdStr(FILE*,char *,int,int,char*,int*,int*);
|
|
extern int pp_WrStr(FILE*,char *);
|
|
extern int strolen ( char* );
|
|
extern int strocpy (char*, char* );
|
|
extern char* strodup ( char * );
|
|
extern DEFINES *AddDefine( char * szDefine, char * szValue ); /* add a new Lex define from the command line */
|
|
|
|
/* HBPP.C exported variables */
|
|
|
|
extern int lInclude;
|
|
extern int *aCondCompile, nCondCompile;
|
|
extern int nline;
|
|
|
|
extern COMMANDS *aCommnew ;
|
|
extern TRANSLATES *aTranslates ;
|
|
|
|
/* Needed support modules, but not contained in HBPP.C */
|
|
|
|
extern FILENAME *SplitFilename( char * ); /* splits filename into a path, a name and an extension */
|
|
extern char *MakeFilename( char *, FILENAME *); /* joins a path, a name an an extension int filename */
|
|
extern void * OurMalloc( LONG lSize ); /* our malloc with error control */
|
|
extern void * _xgrab( ULONG ); /* allocates fixed memory */
|
|
extern void * _xrealloc( void *, ULONG ); /* reallocates memory */
|
|
extern void _xfree( void * ); /* frees fixed memory */
|
|
|
|
/* Needed support variables, but not contained in HBPP.C */
|
|
|
|
extern PATHNAMES *_pIncludePath;
|
|
extern FILENAME *_pFileName;
|
|
extern DEFINES *topDefine;
|
|
|
|
#endif /* HB_PP_H_ */
|