Welcome to mirror list, hosted at ThFree Co, Russian Federation.

vasnprintf.c « stdio « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4cb43ce7af7a60352f994a7be70b40a3245afb28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* Copyright (C) 2007 Eric Blake
 * 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 vfprintf.c */

#include <_ansi.h>
#include <reent.h>
#include <stdio.h>
#include <stdarg.h>
#include <limits.h>
#include <errno.h>
#include "local.h"

char *
_DEFUN(_vasnprintf_r, (ptr, buf, lenp, fmt, ap),
       struct _reent *ptr _AND
       char *buf _AND
       size_t *lenp _AND
       const char *fmt _AND
       va_list ap)
{
  int ret;
  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;
      buf = NULL;
    }
  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. */
  ret = _svfprintf_r (ptr, &f, fmt, ap);
  if (ret < 0)
    return NULL;
  *lenp = ret;
  *f._p = '\0';
  return (char *) f._bf._base;
}

#ifdef _NANO_FORMATTED_IO
char *
_EXFUN(_vasniprintf_r, (struct _reent*, char *, size_t *,
			const char *, __VALIST)
       _ATTRIBUTE ((__alias__("_vasnprintf_r"))));
#endif

#ifndef _REENT_ONLY

char *
_DEFUN(vasnprintf, (buf, lenp, fmt, ap),
       char *buf _AND
       size_t *lenp _AND
       const char *fmt _AND
       va_list ap)
{
  return _vasnprintf_r (_REENT, buf, lenp, fmt, ap);
}

#ifdef _NANO_FORMATTED_IO
char *
_EXFUN(vasniprintf, (char *, size_t *, const char *, __VALIST)
       _ATTRIBUTE ((__alias__("vasnprintf"))));
#endif
#endif /* ! _REENT_ONLY */