File: hanjac.c

package info (click to toggle)
libhangul 0.1.0%2Bgit20170815-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 11,376 kB
  • sloc: ansic: 8,295; python: 627; xml: 394; makefile: 164; ruby: 24; sh: 12
file content (15 lines) | stat: -rw-r--r-- 200 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <string.h>

#include "../hangul/hangul.h"

int
main(int argc, char *argv[])
{
    if (argc != 3)
	return 1;

    hanja_table_txt_to_bin(argv[1], argv[2]);

    return 0;
}