Blame lib/asnprintf.c

Packit Service a2489d
/* Formatted output to strings.
Packit Service a2489d
   Copyright (C) 1999, 2002, 2006, 2009-2018 Free Software Foundation, Inc.
Packit Service a2489d
Packit Service a2489d
   This program is free software; you can redistribute it and/or modify
Packit Service a2489d
   it under the terms of the GNU General Public License as published by
Packit Service a2489d
   the Free Software Foundation; either version 3, or (at your option)
Packit Service a2489d
   any later version.
Packit Service a2489d
Packit Service a2489d
   This program is distributed in the hope that it will be useful,
Packit Service a2489d
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service a2489d
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service a2489d
   GNU General Public License for more details.
Packit Service a2489d
Packit Service a2489d
   You should have received a copy of the GNU General Public License along
Packit Service a2489d
   with this program; if not, see <https://www.gnu.org/licenses/>.  */
Packit Service a2489d
Packit Service a2489d
#include <config.h>
Packit Service a2489d
Packit Service a2489d
/* Specification.  */
Packit Service a2489d
#include "vasnprintf.h"
Packit Service a2489d
Packit Service a2489d
#include <stdarg.h>
Packit Service a2489d
Packit Service a2489d
char *
Packit Service a2489d
asnprintf (char *resultbuf, size_t *lengthp, const char *format, ...)
Packit Service a2489d
{
Packit Service a2489d
  va_list args;
Packit Service a2489d
  char *result;
Packit Service a2489d
Packit Service a2489d
  va_start (args, format);
Packit Service a2489d
  result = vasnprintf (resultbuf, lengthp, format, args);
Packit Service a2489d
  va_end (args);
Packit Service a2489d
  return result;
Packit Service a2489d
}