aboutsummaryrefslogtreecommitdiffstats
path: root/src/runes.c
blob: c424ef6b08ccdc4a4c0d61316622788eb5e04bab (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);

    runes_loop_run(&t);

    runes_term_cleanup(&t);

    return 0;
}