diff options
| author | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2005-07-20 14:06:53 +0000 | 
|---|---|---|
| committer | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2005-07-20 14:06:53 +0000 | 
| commit | 27a53acf7190d20985a927f19fb5d0e90ad25e60 (patch) | |
| tree | 91b177aca82a7a1b9848bbb184b61975b66deb9e /examples/example.c | |
| parent | 2cdfde517e53ae2c7c3393a505e1f127e714fc59 (diff) | |
Fixes
    - Added 'rcc-gtk-config' program to examples
    - Fixed problems in autoconf configuration
    - Fixed bug in rccLocaleGetCharset
    - Fixed visibility of all items in gtkui
Diffstat (limited to 'examples/example.c')
| -rw-r--r-- | examples/example.c | 13 | 
1 files changed, 7 insertions, 6 deletions
diff --git a/examples/example.c b/examples/example.c index 820bae0..43fc853 100644 --- a/examples/example.c +++ b/examples/example.c @@ -5,22 +5,23 @@  #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; +     +    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");  | 
