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;
|
|
|
|
}
|
|
|
|
|
2014-07-04 Bin Cheng <bin.cheng@arm.com>
* README (--enable-newlib-nano-formatted-io): Describe.
* acconfig.h (_NANO_FORMATTED_IO): Undef.
* newlib.hin (_NANO_FORMATTED_IO): Undef.
* configure.in (--enable-newlib-nano-formatted-io): New option.
* configure: Regenerated.
* libc/configure.in (--enable-newlib-nano-formatted-io): New option.
* libc/configure: Regenerated.
* libc/stdio/Makefile.am (NEWLIB_NANO_FORMATTED_IO): Support new
configuration option.
* libc/stdio/Makefile.in: Regenerated.
* libc/stdio/asnprintf.c (_asniprintf_r, asniprintf): Use
_NANO_FORMATTED_IO to declare alias prototypes.
* libc/stdio/asprintf.c (_asiprintf_r, asiprintf): Ditto.
* libc/stdio/dprintf.c (_diprintf_r, diprintf): Ditto.
* libc/stdio/fprintf.c (_fiprintf_r, fiprintf): Ditto.
* libc/stdio/fscanf.c (fiscanf, _fiscanf_r): Ditto.
* libc/stdio/printf.c (_iprintf_r, iprintf): Ditto.
* libc/stdio/scanf.c (iscanf, _iscanf_r): Ditto.
* libc/stdio/snprintf.c (_sniprintf_r, sniprintf): Ditto.
* libc/stdio/sprintf.c (_siprintf_r, siprintf): Ditto.
* libc/stdio/sscanf.c (siscanf, _siscanf_r): Ditto.
* libc/stdio/vasnprintf.c (_vasniprintf_r, vasniprintf): Ditto.
* libc/stdio/vasprintf.c (vasiprintf, _vasiprintf_r): Ditto.
* libc/stdio/vdprintf.c (_vdiprintf_r, vdiprintf): Ditto.
* libc/stdio/vprintf.c (viprintf, _viprintf_r): Ditto.
* libc/stdio/vscanf.c (viscanf, _viscanf_r): Ditto.
* libc/stdio/vsnprintf.c (vsniprintf, _vsniprintf_r): Ditto.
* libc/stdio/vsprintf.c (vsiprintf, _vsiprintf_r): Ditto.
* libc/stdio/vsscanf.c (vsiscanf, _vsiscanf_r): Ditto.
* libc/stdio/nano-vfprintf.c: New file.
* libc/stdio/nano-vfprintf_float.c: New file.
* libc/stdio/nano-vfprintf_i.c: New file.
* libc/stdio/nano-vfprintf_local.h: New file.
* libc/stdio/nano-vfscanf.c: New file.
* libc/stdio/nano-vfscanf_float.c: New file.
* libc/stdio/nano-vfscanf_i.c: New file.
* libc/stdio/nano-vfscanf_local.h: New file.
2014-07-05 01:21:45 +08:00
|
|
|
#ifdef _NANO_FORMATTED_IO
|
|
|
|
char *
|
|
|
|
_EXFUN(_asniprintf_r, (struct _reent *, char *, size_t *, const char *, ...)
|
|
|
|
_ATTRIBUTE ((__alias__("_asnprintf_r"))));
|
|
|
|
#endif
|
|
|
|
|
2007-05-04 10:55:16 +08:00
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
2014-07-04 Bin Cheng <bin.cheng@arm.com>
* README (--enable-newlib-nano-formatted-io): Describe.
* acconfig.h (_NANO_FORMATTED_IO): Undef.
* newlib.hin (_NANO_FORMATTED_IO): Undef.
* configure.in (--enable-newlib-nano-formatted-io): New option.
* configure: Regenerated.
* libc/configure.in (--enable-newlib-nano-formatted-io): New option.
* libc/configure: Regenerated.
* libc/stdio/Makefile.am (NEWLIB_NANO_FORMATTED_IO): Support new
configuration option.
* libc/stdio/Makefile.in: Regenerated.
* libc/stdio/asnprintf.c (_asniprintf_r, asniprintf): Use
_NANO_FORMATTED_IO to declare alias prototypes.
* libc/stdio/asprintf.c (_asiprintf_r, asiprintf): Ditto.
* libc/stdio/dprintf.c (_diprintf_r, diprintf): Ditto.
* libc/stdio/fprintf.c (_fiprintf_r, fiprintf): Ditto.
* libc/stdio/fscanf.c (fiscanf, _fiscanf_r): Ditto.
* libc/stdio/printf.c (_iprintf_r, iprintf): Ditto.
* libc/stdio/scanf.c (iscanf, _iscanf_r): Ditto.
* libc/stdio/snprintf.c (_sniprintf_r, sniprintf): Ditto.
* libc/stdio/sprintf.c (_siprintf_r, siprintf): Ditto.
* libc/stdio/sscanf.c (siscanf, _siscanf_r): Ditto.
* libc/stdio/vasnprintf.c (_vasniprintf_r, vasniprintf): Ditto.
* libc/stdio/vasprintf.c (vasiprintf, _vasiprintf_r): Ditto.
* libc/stdio/vdprintf.c (_vdiprintf_r, vdiprintf): Ditto.
* libc/stdio/vprintf.c (viprintf, _viprintf_r): Ditto.
* libc/stdio/vscanf.c (viscanf, _viscanf_r): Ditto.
* libc/stdio/vsnprintf.c (vsniprintf, _vsniprintf_r): Ditto.
* libc/stdio/vsprintf.c (vsiprintf, _vsiprintf_r): Ditto.
* libc/stdio/vsscanf.c (vsiscanf, _vsiscanf_r): Ditto.
* libc/stdio/nano-vfprintf.c: New file.
* libc/stdio/nano-vfprintf_float.c: New file.
* libc/stdio/nano-vfprintf_i.c: New file.
* libc/stdio/nano-vfprintf_local.h: New file.
* libc/stdio/nano-vfscanf.c: New file.
* libc/stdio/nano-vfscanf_float.c: New file.
* libc/stdio/nano-vfscanf_i.c: New file.
* libc/stdio/nano-vfscanf_local.h: New file.
2014-07-05 01:21:45 +08:00
|
|
|
#ifdef _NANO_FORMATTED_IO
|
|
|
|
char *
|
|
|
|
_EXFUN(asniprintf, (char *, size_t *, const char *, ...)
|
|
|
|
_ATTRIBUTE ((__alias__("asnprintf"))));
|
|
|
|
#endif
|
2007-05-04 10:55:16 +08:00
|
|
|
#endif /* ! _REENT_ONLY */
|