aboutsummaryrefslogtreecommitdiff
path: root/sys/libunicode/vendor/mkgraphemedata.c
blob: f79d851cf606679081d15f498e6976161e080c14 (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 <libunicode.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;
}