aboutsummaryrefslogtreecommitdiff
path: root/tests/core
diff options
context:
space:
mode:
Diffstat (limited to 'tests/core')
-rw-r--r--tests/core/test_sscanf_6.in15
-rw-r--r--tests/core/test_sscanf_6.out2
2 files changed, 17 insertions, 0 deletions
diff --git a/tests/core/test_sscanf_6.in b/tests/core/test_sscanf_6.in
new file mode 100644
index 00000000..2f2f58a3
--- /dev/null
+++ b/tests/core/test_sscanf_6.in
@@ -0,0 +1,15 @@
+
+ #include <stdio.h>
+ #include <string.h>
+ int main()
+ {
+ char *date = "18.07.2013w";
+ char c[10];
+ memset(c, 0, 10);
+ int y, m, d, i;
+ i = sscanf(date, "%d.%d.%4d%c", &d, &m, &y, c);
+ printf("date: %s; day %2d, month %2d, year %4d, extra: %c, %d\n", date, d, m, y, c[0], i);
+ i = sscanf(date, "%d.%d.%3c", &d, &m, c);
+ printf("date: %s; day %2d, month %2d, year %4d, extra: %s, %d\n", date, d, m, y, c, i);
+ }
+ \ No newline at end of file
diff --git a/tests/core/test_sscanf_6.out b/tests/core/test_sscanf_6.out
new file mode 100644
index 00000000..4aee073e
--- /dev/null
+++ b/tests/core/test_sscanf_6.out
@@ -0,0 +1,2 @@
+date: 18.07.2013w; day 18, month 7, year 2013, extra: w, 4
+date: 18.07.2013w; day 18, month 7, year 2013, extra: 201, 3