2008-04-30 10:47:14 +08:00
|
|
|
/* Copyright (C) 2007, 2008 Eric Blake
|
2007-05-04 10:55:16 +08:00
|
|
|
* Permission to use, copy, modify, and distribute this software
|
|
|
|
* is freely granted, provided that this notice is preserved.
|
|
|
|
*/
|
|
|
|
/* This code was derived from asprintf.c */
|
|
|
|
/* doc in sprintf.c */
|
|
|
|
|
|
|
|
#include <_ansi.h>
|
|
|
|
#include <reent.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <errno.h>
|
2008-11-25 06:08:02 +08:00
|
|
|
#include "local.h"
|
2007-05-04 10:55:16 +08:00
|
|
|
|
|
|
|
char *
|
|
|
|
_DEFUN(_asnprintf_r, (ptr, buf, lenp, fmt),
|
2013-11-18 Sahil Patnayakuni <sahilp@oarcorp.com>
* libc/include/stdio.h, libc/machine/powerpc/vfscanf.c,
libc/machine/spu/fgetpos.c, libc/machine/spu/fgets.c,
libc/machine/spu/fopen.c, libc/machine/spu/fputs.c,
libc/machine/spu/fread.c, libc/machine/spu/freopen.c,
libc/machine/spu/fwrite.c, libc/machine/spu/setbuf.c,
libc/machine/spu/vfprintf.c, libc/machine/spu/vfscanf.c,
libc/machine/spu/vsnprintf.c, libc/machine/spu/vsprintf.c,
libc/machine/spu/vsscanf.c, libc/stdio/asnprintf.c,
libc/stdio/asprintf.c, libc/stdio/dprintf.c,
libc/stdio/fgetpos.c, libc/stdio/fgets.c,
libc/stdio/fmemopen.c, libc/stdio/fopen.c,
libc/stdio/fprintf.c, libc/stdio/fputs.c,
libc/stdio/fread.c, libc/stdio/freopen.c,
libc/stdio/fscanf.c, libc/stdio/fwrite.c,
libc/stdio/printf.c, libc/stdio/scanf.c,
libc/stdio/setbuf.c, libc/stdio/snprintf.c,
libc/stdio/sprintf.c, libc/stdio/sscanf.c,
libc/stdio/vdprintf.c, libc/stdio/vprintf.c,
libc/stdio/vscanf.c, libc/stdio/vsnprintf.c,
libc/stdio/vsprintf.c, libc/stdio/vsscanf.c: Add restrict keyword.
2013-11-19 01:28:06 +08:00
|
|
|
struct _reent *__restrict ptr _AND
|
2007-05-04 10:55:16 +08:00
|
|
|
char *buf _AND
|
|
|
|
size_t *lenp _AND
|
2013-11-18 Sahil Patnayakuni <sahilp@oarcorp.com>
* libc/include/stdio.h, libc/machine/powerpc/vfscanf.c,
libc/machine/spu/fgetpos.c, libc/machine/spu/fgets.c,
libc/machine/spu/fopen.c, libc/machine/spu/fputs.c,
libc/machine/spu/fread.c, libc/machine/spu/freopen.c,
libc/machine/spu/fwrite.c, libc/machine/spu/setbuf.c,
libc/machine/spu/vfprintf.c, libc/machine/spu/vfscanf.c,
libc/machine/spu/vsnprintf.c, libc/machine/spu/vsprintf.c,
libc/machine/spu/vsscanf.c, libc/stdio/asnprintf.c,
libc/stdio/asprintf.c, libc/stdio/dprintf.c,
libc/stdio/fgetpos.c, libc/stdio/fgets.c,
libc/stdio/fmemopen.c, libc/stdio/fopen.c,
libc/stdio/fprintf.c, libc/stdio/fputs.c,
libc/stdio/fread.c, libc/stdio/freopen.c,
libc/stdio/fscanf.c, libc/stdio/fwrite.c,
libc/stdio/printf.c, libc/stdio/scanf.c,
libc/stdio/setbuf.c, libc/stdio/snprintf.c,
libc/stdio/sprintf.c, libc/stdio/sscanf.c,
libc/stdio/vdprintf.c, libc/stdio/vprintf.c,
libc/stdio/vscanf.c, libc/stdio/vsnprintf.c,
libc/stdio/vsprintf.c, libc/stdio/vsscanf.c: Add restrict keyword.
2013-11-19 01:28:06 +08:00
|
|
|
const char *__restrict fmt _DOTS)
|
2007-05-04 10:55:16 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
va_list ap;
|
|
|
|
FILE f;
|
|
|
|
size_t len = *lenp;
|
|
|
|
|
|
|
|
if (buf && len)
|
|
|
|
{
|
|
|
|
/* mark an existing buffer, but allow allocation of larger string */
|
|
|
|
f._flags = __SWR | __SSTR | __SOPT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* mark a zero-length reallocatable buffer */
|
|
|
|
f._flags = __SWR | __SSTR | __SMBF;
|
|
|
|
len = 0;
|
2007-05-10 03:27:30 +08:00
|
|
|
buf = NULL;
|
2007-05-04 10:55:16 +08:00
|
|
|
}
|
|
|
|
f._bf._base = f._p = (unsigned char *) buf;
|
|
|
|
/* For now, inherit the 32-bit signed limit of FILE._bf._size.
|
|
|
|
FIXME - it would be nice to rewrite sys/reent.h to support size_t
|
|
|
|
for _size. */
|
|
|
|
if (len > INT_MAX)
|
|
|
|
{
|
|
|
|
ptr->_errno = EOVERFLOW;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
f._bf._size = f._w = len;
|
|
|
|
f._file = -1; /* No file. */
|
|
|
|
va_start (ap, fmt);
|
2008-04-30 10:47:14 +08:00
|
|
|
ret = _svfprintf_r (ptr, &f, fmt, ap);
|
2007-05-04 10:55:16 +08:00
|
|
|
va_end (ap);
|
|
|
|
if (ret < 0)
|
|
|
|
return NULL;
|
|
|
|
*lenp = ret;
|
|
|
|
*f._p = '\0';
|
|
|
|
return (char *) f._bf._base;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef _REENT_ONLY
|
|
|
|
|
|
|
|
char *
|
|
|
|
_DEFUN(asnprintf, (buf, lenp, fmt),
|
2013-11-18 Sahil Patnayakuni <sahilp@oarcorp.com>
* libc/include/stdio.h, libc/machine/powerpc/vfscanf.c,
libc/machine/spu/fgetpos.c, libc/machine/spu/fgets.c,
libc/machine/spu/fopen.c, libc/machine/spu/fputs.c,
libc/machine/spu/fread.c, libc/machine/spu/freopen.c,
libc/machine/spu/fwrite.c, libc/machine/spu/setbuf.c,
libc/machine/spu/vfprintf.c, libc/machine/spu/vfscanf.c,
libc/machine/spu/vsnprintf.c, libc/machine/spu/vsprintf.c,
libc/machine/spu/vsscanf.c, libc/stdio/asnprintf.c,
libc/stdio/asprintf.c, libc/stdio/dprintf.c,
libc/stdio/fgetpos.c, libc/stdio/fgets.c,
libc/stdio/fmemopen.c, libc/stdio/fopen.c,
libc/stdio/fprintf.c, libc/stdio/fputs.c,
libc/stdio/fread.c, libc/stdio/freopen.c,
libc/stdio/fscanf.c, libc/stdio/fwrite.c,
libc/stdio/printf.c, libc/stdio/scanf.c,
libc/stdio/setbuf.c, libc/stdio/snprintf.c,
libc/stdio/sprintf.c, libc/stdio/sscanf.c,
libc/stdio/vdprintf.c, libc/stdio/vprintf.c,
libc/stdio/vscanf.c, libc/stdio/vsnprintf.c,
libc/stdio/vsprintf.c, libc/stdio/vsscanf.c: Add restrict keyword.
2013-11-19 01:28:06 +08:00
|
|
|
char *__restrict buf _AND
|
|
|
|
size_t *__restrict lenp _AND
|
|
|
|
const char *__restrict fmt _DOTS)
|
2007-05-04 10:55:16 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
va_list ap;
|
|
|
|
FILE f;
|
|
|
|
size_t len = *lenp;
|
|
|
|
struct _reent *ptr = _REENT;
|
|
|
|
|
|
|
|
if (buf && len)
|
|
|
|
{
|
|
|
|
/* mark an existing buffer, but allow allocation of larger string */
|
|
|
|
f._flags = __SWR | __SSTR | __SOPT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* mark a zero-length reallocatable buffer */
|
|
|
|
f._flags = __SWR | __SSTR | __SMBF;
|
|
|
|
len = 0;
|
2007-05-10 03:27:30 +08:00
|
|
|
buf = NULL;
|
2007-05-04 10:55:16 +08:00
|
|
|
}
|
|
|
|
f._bf._base = f._p = (unsigned char *) buf;
|
|
|
|
/* For now, inherit the 32-bit signed limit of FILE._bf._size.
|
|
|
|
FIXME - it would be nice to rewrite sys/reent.h to support size_t
|
|
|
|
for _size. */
|
|
|
|
if (len > INT_MAX)
|
|
|
|
{
|
|
|
|
ptr->_errno = EOVERFLOW;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
f._bf._size = f._w = len;
|
|
|
|
f._file = -1; /* No file. */
|
|
|
|
va_start (ap, fmt);
|
2008-04-30 10:47:14 +08:00
|
|
|
ret = _svfprintf_r (ptr, &f, fmt, ap);
|
2007-05-04 10:55:16 +08:00
|
|
|
va_end (ap);
|
|
|
|
if (ret < 0)
|
|
|
|
return NULL;
|
|
|
|
*lenp = ret;
|
|
|
|
*f._p = '\0';
|
|
|
|
return (char *) f._bf._base;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ! _REENT_ONLY */
|