summaryrefslogtreecommitdiff
path: root/stdio-common/tst-wc-printf.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-04-28 14:15:46 +0000
committerUlrich Drepper <drepper@redhat.com>1998-04-28 14:15:46 +0000
commit366cff4d8f5c0e6dbfe06eaa1301aa955a848f45 (patch)
treee75a2d685d4b78f60a20a3eae04e57712b11a27e /stdio-common/tst-wc-printf.c
parentdf493c3bef6369b5e80b8aaf0f90847eafbd63f2 (diff)
Update.
Reported by Dirk Laessig <d.laessig@tu-bs.de>. * stdio-common/tst-wc-printf.c: New file. Test for %S and %C format. * stdio-common/Makefile (tests): Add tst-wc-printf.
Diffstat (limited to 'stdio-common/tst-wc-printf.c')
-rw-r--r--stdio-common/tst-wc-printf.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/stdio-common/tst-wc-printf.c b/stdio-common/tst-wc-printf.c
new file mode 100644
index 0000000000..1858db1962
--- /dev/null
+++ b/stdio-common/tst-wc-printf.c
@@ -0,0 +1,22 @@
+#define _GNU_SOURCE 1
+#include <wchar.h>
+#include <stdio.h>
+#include <string.h>
+#include <wctype.h>
+
+int
+main (void)
+{
+ wchar_t tmp[3];
+ tmp[0] = '8';
+ tmp[1] = '1';
+ tmp[2] = 0;
+
+ printf ("Test for wide character output with printf\n");
+
+ printf ("with %%S: %S\n", tmp);
+
+ printf ("with %%C: %C\n", tmp[0]);
+
+ return 0;
+}