|
|
xml: charsets
/** @file
Parser: pool class implementation.
Copyright (c) 2001-2003 ArtLebedev Group (http://www.artlebedev.com)
Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
*/
static const char* IDENT_POOL_C="$Date: 2003/03/06 12:02:05 $";
#include "pa_pool.h"
#include "pa_types.h"
#include "pa_common.h"
char* Pool::format_integer(int value) {
char local[MAX_NUMBER];
return copy(local, snprintf(local, MAX_NUMBER, "%d", value)+1/*for terminating 0*/);
};