Annotation of parser3/src/main/pa_pool.C, revision 1.59.2.6
1.13 paf 1: /** @file
1.59.2.5 paf 2: Parser: pool class implementation.
1.14 paf 3:
1.59.2.3 paf 4: Copyright (c) 2001-2003 ArtLebedev Group (http://www.artlebedev.com)
1.51 paf 5: Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
1.54 paf 6: */
1.14 paf 7:
1.59.2.6! paf 8: static const char* IDENT_POOL_C="$Date: 2003/02/21 10:55:44 $";
1.1 paf 9:
10: #include "pa_pool.h"
1.59.2.5 paf 11: #include "pa_types.h"
1.22 parser 12: #include "pa_common.h"
13:
1.59.2.5 paf 14: char* Pool::format_integer(int value) {
15: char local[MAX_NUMBER];
16: return copy(local, snprintf(local, MAX_NUMBER, "%d", value)+1/*for terminating 0*/);
17: };
1.59.2.6! paf 18:
E-mail: