Blame


1 3448adb0 2022-11-02 op /* See LICENSE file for copyright and license details. */
2 3448adb0 2022-11-02 op #include <stddef.h>
3 3448adb0 2022-11-02 op
4 3448adb0 2022-11-02 op #include "util.h"
5 3448adb0 2022-11-02 op
6 3448adb0 2022-11-02 op int
7 3448adb0 2022-11-02 op main(int argc, char *argv[])
8 3448adb0 2022-11-02 op {
9 3448adb0 2022-11-02 op struct break_test *test = NULL;
10 3448adb0 2022-11-02 op size_t testlen = 0;
11 3448adb0 2022-11-02 op
12 3448adb0 2022-11-02 op (void)argc;
13 3448adb0 2022-11-02 op
14 3448adb0 2022-11-02 op break_test_list_parse("data/SentenceBreakTest.txt", &test, &testlen);
15 3448adb0 2022-11-02 op break_test_list_print(test, testlen, "sentence_break_test", argv[0]);
16 3448adb0 2022-11-02 op break_test_list_free(test, testlen);
17 3448adb0 2022-11-02 op
18 3448adb0 2022-11-02 op return 0;
19 3448adb0 2022-11-02 op }