mirror of
https://github.com/postgres/postgres.git
synced 2025-05-29 00:03:09 -04:00
38 lines
816 B
C
38 lines
816 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* format.c
|
|
* a wrapper around code that does what vsprintf does.
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
*
|
|
* IDENTIFICATION
|
|
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/format.c,v 1.12 1999/06/19 04:54:19 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include "postgres.h"
|
|
|
|
#define FormMaxSize 1024
|
|
#define FormMinSize (FormMaxSize / 8)
|
|
|
|
static char FormBuf[FormMaxSize];
|
|
|
|
|
|
/* ----------------
|
|
* varargform
|
|
* ----------------
|
|
*/
|
|
char *
|
|
varargform(const char *fmt,...)
|
|
{
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
|
vsnprintf(FormBuf, FormMaxSize - 1, fmt, args);
|
|
va_end(args);
|
|
return FormBuf;
|
|
}
|