summaryrefslogtreecommitdiffstats
path: root/examples/example1.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example1.c')
-rw-r--r--examples/example1.c40
1 files changed, 40 insertions, 0 deletions
diff --git a/examples/example1.c b/examples/example1.c
new file mode 100644
index 0000000..43fc853
--- /dev/null
+++ b/examples/example1.c
@@ -0,0 +1,40 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <locale.h>
+
+#include <librcc.h>
+
+
+int main() {
+ const char *language;
+ char buf[255];
+ char *recoded;
+
+ rcc_class classes[] = {
+ { "input", RCC_CLASS_STANDARD, NULL, NULL, "Input Encoding", 0 },
+ { "output", RCC_CLASS_STANDARD, "LC_CTYPE", NULL, "Output Encoding", 0 },
+ { NULL }
+ };
+
+ 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;
+}