Annotation of parser3/src/include/pa_common.h, revision 1.5

1.1       paf         1: /*
1.4       paf         2:        Parser
                      3:        Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com)
1.5     ! paf         4:        Author: Alexander Petrosyan <paf@design.ru> (http://design.ru/paf)
1.4       paf         5: 
1.5     ! paf         6:        $Id: pa_common.h,v 1.4 2001/03/10 16:34:35 paf Exp $
1.1       paf         7: */
                      8: 
                      9: #ifndef PA_COMMON_H
                     10: #define PA_COMMON_H
                     11: 
                     12: #include <stdarg.h>
1.2       paf        13: #include "pa_pool.h"
1.1       paf        14: 
                     15: #ifdef WIN32
                     16: #define vsnprintf __vsnprintf 
                     17: #define snprintf __snprintf
                     18: 
                     19: int __vsnprintf(char *, size_t, const char *, va_list);
                     20: int __snprintf(char *, size_t, const char *, ...);
                     21: #endif
1.2       paf        22: 
1.3       paf        23: char *file_read(Pool& pool, char *fname, bool fail_on_read_problem);
1.1       paf        24: 
                     25: #endif

E-mail: