mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-19 19:40:06 +00:00
20 lines
289 B
C
20 lines
289 B
C
|
#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;
|
||
|
}
|