20 lines
397 B
C
20 lines
397 B
C
/* See LICENSE file for copyright and license details. */
|
|
#include <stddef.h>
|
|
|
|
#include "util.h"
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
struct break_test *test = NULL;
|
|
size_t testlen = 0;
|
|
|
|
(void)argc;
|
|
|
|
break_test_list_parse("data/GraphemeBreakTest.txt", &test, &testlen);
|
|
break_test_list_print(test, testlen, "character_break_test", argv[0]);
|
|
break_test_list_free(test, testlen);
|
|
|
|
return 0;
|
|
}
|