aboutsummaryrefslogtreecommitdiffstats
path: root/src/runes.c
blob: b71add648fd964e91a3ebca8b2f547ba614cedb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <locale.h>

#include "runes.h"

int main (int argc, char *argv[])
{
    RunesTerm t;

    setlocale(LC_ALL, "");

    runes_term_init(&t, argc, argv);

    uv_run(t.loop, UV_RUN_DEFAULT);

    runes_term_cleanup(&t);

    return 0;
}