singe/thirdparty/uthash/tests/test53.c
2023-10-23 19:38:18 -05:00

14 lines
213 B
C

#include <stdio.h>
#include "utstring.h"
int main()
{
UT_string *s;
utstring_new(s);
utstring_printf(s, "hello world!" );
printf("%s\n", utstring_body(s));
utstring_free(s);
return 0;
}