aboutsummaryrefslogtreecommitdiff
path: root/sys/libutf/vendor/mkgraphemedata.c
blob: ce5a9524c59b73ce175b4eb6590f992630fc418e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <u.h>
#include <base.h>
#include <libutf.h>

// -----------------------------------------------------------------------
// main point of entry

static
void
usage(void)
{
    fprintf(stderr, "usage: mkgraphemedata <GraphemeBreakProperty.txt>\n");
    exit(1);
}

int
main(int argc, char *argv[])
{
    ioยทStream *utf8;
    char line[1024];

    ARGBEGIN{
    }ARGEND;
}