mcst-linux-kernel/glibc-2.35/string/tst-strfry.c

15 lines
160 B
C
Raw Permalink Normal View History

2024-07-09 13:51:45 +03:00
#include <stdio.h>
#include <string.h>
int
do_test (void)
{
char str[] = "this is a test";
strfry (str);
return 0;
}
#include <support/test-driver.c>