File:  [parser3project] / parser3 / src / main / pa_pool.C
Revision 1.59.2.6: download - view: text, annotated - select for diffs - revision graph
Thu Mar 6 12:02:05 2003 UTC (23 years, 4 months ago) by paf
Diff to: branchpoint 1.59: preferred, unified
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*/);
};


E-mail: