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

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/siprintf.c')
-rw-r--r--newlib/libc/stdio/siprintf.c44
1 files changed, 27 insertions, 17 deletions
diff --git a/newlib/libc/stdio/siprintf.c b/newlib/libc/stdio/siprintf.c
index d6a0e1983..f0a80980c 100644
--- a/newlib/libc/stdio/siprintf.c
+++ b/newlib/libc/stdio/siprintf.c
@@ -22,41 +22,51 @@ FUNCTION
INDEX
fiprintf
INDEX
+ _fiprintf_r
+INDEX
iprintf
INDEX
+ _iprintf_r
+INDEX
siprintf
INDEX
+ _siprintf_r
+INDEX
sniprintf
INDEX
+ _sniprintf_r
+INDEX
asiprintf
INDEX
+ _asiprintf_r
+INDEX
asniprintf
+INDEX
+ _asniprintf_r
ANSI_SYNOPSIS
#include <stdio.h>
- int iprintf(const char *<[format]> [, <[arg]>, ...]);
- int fiprintf(FILE *<[fd]>, const char *<[format]> [, <[arg]>, ...]);
- int siprintf(char *<[str]>, const char *<[format]> [, <[arg]>, ...]);
- int sniprintf(char *<[str]>, size_t <[size]>, const char *<[format]>
- [, <[arg]>, ...]);
- int asiprintf(char **<[strp]>, const char *<[format]> [, <[arg]>, ...]);
- char *asniprintf(char *<[str]>, size_t *<[size]>, const char *<[format]>
- [, <[arg]>, ...]);
-
- int _iprintf_r(struct _reent *<[ptr]>, const char *<[format]>
- [, <[arg]>, ...]);
+ int iprintf(const char *<[format]>, ...);
+ int fiprintf(FILE *<[fd]>, const char *<[format]> , ...);
+ int siprintf(char *<[str]>, const char *<[format]>, ...);
+ int sniprintf(char *<[str]>, size_t <[size]>, const char *<[format]>,
+ ...);
+ int asiprintf(char **<[strp]>, const char *<[format]>, ...);
+ char *asniprintf(char *<[str]>, size_t *<[size]>,
+ const char *<[format]>, ...);
+
+ int _iprintf_r(struct _reent *<[ptr]>, const char *<[format]>, ...);
int _fiprintf_r(struct _reent *<[ptr]>, FILE *<[fd]>,
- const char *<[format]> [, <[arg]>, ...]);
+ const char *<[format]>, ...);
int _siprintf_r(struct _reent *<[ptr]>, char *<[str]>,
- const char *<[format]> [, <[arg]>, ...]);
+ const char *<[format]>, ...);
int _sniprintf_r(struct _reent *<[ptr]>, char *<[str]>, size_t <[size]>,
- const char *<[format]> [, <[arg]>, ...]);
+ const char *<[format]>, ...);
int _asiprintf_r(struct _reent *<[ptr]>, char **<[strp]>,
- const char *<[format]> [, <[arg]>, ...]);
+ const char *<[format]>, ...);
char *_asniprintf_r(struct _reent *<[ptr]>, char *<[str]>,
- size_t *<[size]>, const char *<[format]>
- [, <[arg]>, ...]);
+ size_t *<[size]>, const char *<[format]>, ...);
DESCRIPTION
<<iprintf>>, <<fiprintf>>, <<siprintf>>, <<sniprintf>>,