Annotation of parser3/src/include/pa_common.h, revision 1.2
1.1 paf 1: /*
1.2 ! paf 2: $Id: pa_common.h,v 1.1 2001/01/29 20:46:21 paf Exp $
1.1 paf 3: */
4:
5: #ifndef PA_COMMON_H
6: #define PA_COMMON_H
7:
8: #include <stdarg.h>
1.2 ! paf 9: #include "pa_pool.h"
1.1 paf 10:
11: #ifdef WIN32
12: #define vsnprintf __vsnprintf
13: #define snprintf __snprintf
14:
15: int __vsnprintf(char *, size_t, const char *, va_list);
16: int __snprintf(char *, size_t, const char *, ...);
17: #endif
1.2 ! paf 18:
! 19: char *file_read(Pool& pool, char *fname);
1.1 paf 20:
21: #endif
E-mail: