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/sscanf.c')
-rw-r--r--newlib/libc/stdio/sscanf.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/newlib/libc/stdio/sscanf.c b/newlib/libc/stdio/sscanf.c
index b09390380..37cd7ca30 100644
--- a/newlib/libc/stdio/sscanf.c
+++ b/newlib/libc/stdio/sscanf.c
@@ -22,24 +22,28 @@ FUNCTION
INDEX
scanf
INDEX
+ _scanf_r
+INDEX
fscanf
INDEX
+ _fscanf_r
+INDEX
sscanf
+INDEX
+ _sscanf_r
ANSI_SYNOPSIS
#include <stdio.h>
- int scanf(const char *<[format]> [, <[arg]>, ...]);
- int fscanf(FILE *<[fd]>, const char *<[format]> [, <[arg]>, ...]);
- int sscanf(const char *<[str]>, const char *<[format]>
- [, <[arg]>, ...]);
+ int scanf(const char *<[format]>, ...);
+ int fscanf(FILE *<[fd]>, const char *<[format]>, ...);
+ int sscanf(const char *<[str]>, const char *<[format]>, ...);
- int _scanf_r(struct _reent *<[ptr]>, const char *<[format]>
- [, <[arg]>, ...]);
- int _fscanf_r(struct _reent *<[ptr]>, FILE *<[fd]>, const char *<[format]>
- [, <[arg]>, ...]);
+ int _scanf_r(struct _reent *<[ptr]>, const char *<[format]>, ...);
+ int _fscanf_r(struct _reent *<[ptr]>, FILE *<[fd]>,
+ const char *<[format]>, ...);
int _sscanf_r(struct _reent *<[ptr]>, const char *<[str]>,
- const char *<[format]> [, <[arg]>, ...]);
+ const char *<[format]>, ...);
TRAD_SYNOPSIS