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.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/newlib/libc/stdio/sscanf.c b/newlib/libc/stdio/sscanf.c
index 7cf897c5b..9e9718118 100644
--- a/newlib/libc/stdio/sscanf.c
+++ b/newlib/libc/stdio/sscanf.c
@@ -152,22 +152,31 @@ DESCRIPTION
.Modifier Type(s)
-. h d, i, o, u, x convert input to short,
+. hh d, i, o, u, x, n convert input to char,
+. store in char object
+.
+. h d, i, o, u, x, n convert input to short,
. store in short object
.
. h D, I, O, U, X no effect
-. e, f, c, s, n, p
+. e, f, c, s, p
.
-. l d, i, o, u, x convert input to long,
+. l d, i, o, u, x, n convert input to long,
. store in long object
.
. l e, f, g convert input to double
. store in a double object
.
. l D, I, O, U, X no effect
-. c, s, n, p
+. c, s, p
+.
+. ll d, i, o, u, x, n convert to long long,
+. store in long long
+.
+. L d, i, o, u, x, n convert to long long,
+. store in long long
.
-. L d, i, o, u, x convert to long double,
+. L e, f, g, E, G convert to long double,
. store in long double
.
. L all others no effect