diff options
Diffstat (limited to 'stdio-common/tst-sprintf.c')
-rw-r--r-- | stdio-common/tst-sprintf.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/stdio-common/tst-sprintf.c b/stdio-common/tst-sprintf.c new file mode 100644 index 0000000000..afbacd9037 --- /dev/null +++ b/stdio-common/tst-sprintf.c @@ -0,0 +1,19 @@ +#include <stdio.h> +#include <string.h> + + +int +main (void) +{ + char buf[100]; + int result = 0; + + if (sprintf (buf, "%.0ls", L"foo") != 0 + || strlen (buf) != 0) + { + puts ("sprintf (buf, \"%.0ls\", L\"foo\") produced some output\n"); + result = 1; + } + + return result; +} |