diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-04-28 14:15:46 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-04-28 14:15:46 +0000 |
commit | 366cff4d8f5c0e6dbfe06eaa1301aa955a848f45 (patch) | |
tree | e75a2d685d4b78f60a20a3eae04e57712b11a27e | |
parent | df493c3bef6369b5e80b8aaf0f90847eafbd63f2 (diff) | |
download | glibc-366cff4d8f5c0e6dbfe06eaa1301aa955a848f45.tar.gz glibc-366cff4d8f5c0e6dbfe06eaa1301aa955a848f45.tar.xz glibc-366cff4d8f5c0e6dbfe06eaa1301aa955a848f45.zip |
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.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | stdio-common/Makefile | 2 | ||||
-rw-r--r-- | stdio-common/tst-wc-printf.c | 22 |
3 files changed, 27 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index baf2290d5d..1f0f4d3a7c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,10 @@ * sysdeps/unix/sysv/linux/bits/sem.h: Don't define union semun. Define macro _SEM_SEMUN_UNDEFINED instead. + 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. 1998-04-28 16:32 Philip Blundell <philb@gnu.org> diff --git a/stdio-common/Makefile b/stdio-common/Makefile index 409e64a91c..577cf4cfa3 100644 --- a/stdio-common/Makefile +++ b/stdio-common/Makefile @@ -43,7 +43,7 @@ tests := tst-printf tstscanf test_rdwr test-popen tstgetln test-fseek \ temptest tst-fileno test-fwrite tst-ungetc tst-ferror \ xbug errnobug \ bug1 bug2 bug3 bug4 bug5 bug6 bug7 bug8 bug9 bug10 bug11 \ - tfformat tiformat tstdiomisc tst-printfsz \ + tfformat tiformat tstdiomisc tst-printfsz tst-wc-printf \ scanf1 scanf2 scanf3 scanf4 scanf5 scanf7 scanf8 scanf9 scanf10 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; +} |