blob: 2b40a39b132efbfd267d26182299d9f47465a336 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#include <stdio.h>
2#include <string.h>
3
4static int
5do_test (void)
6{
7 char str[] = "this is a test";
8
9 strfry (str);
10
11 return 0;
12}
13
14#define TEST_FUNCTION do_test ()
15#include "../test-skeleton.c"