aboutsummaryrefslogtreecommitdiff
path: root/tests/test53.c
blob: b30ee561a6032ab1a19aa2941198d9118caeb863 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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;
}