summaryrefslogtreecommitdiffstats
path: root/examples/example.c
blob: 820bae09c58b897bb6dd858ca8735a90948a33b8 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <locale.h>

#include <librcc.h>

static rcc_class classes[] = {
    { "input", RCC_CLASS_STANDARD, NULL, NULL, "Input Encoding", 0 },
    { "output", RCC_CLASS_STANDARD, "LC_CTYPE", NULL, "Output Encoding", 0 },
    { NULL }
};

int main() {
    const char *language;
    char buf[255];
    char *recoded;

    setlocale(LC_ALL, "");
    
    rccInit();
    rccInitDefaultContext(NULL, 0, 0, classes, 0);
    
    language = rccGetCurrentLanguageName(NULL);
    if (language) printf("Current Language: %s\n\n", language);
    else printf("Unable Detect Language\n\n");
    
    while (fgets(buf,255,stdin)) {
	if (strlen(buf)<2) break;
	recoded = rccRecode(NULL, 0, 1, buf);
	if (recoded) {
	    printf(recoded);
	    free(recoded);
	} else printf(buf);
    }

    rccFree();
    return 0;
}