https://bugs.documentfoundation.org/show_bug.cgi?id=99589

--- Comment #1 from Michael Meeks <[email protected]> ---
Oh ye of little faith ;-) the demo app:

/* intended for ~/a.c */
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <locale.h>
#include <stdlib.h>

int main(int argc, char **argv)
{
    setlocale(0,getenv("LANG"));
    fprintf(stderr, "%d -> %d\n", 'I', tolower('I'));
    return 0;
}

$ gcc ~/a.c && LANG=tr_TR.UTF-8 ./a.out
73 -> 73
$ gcc ~/a.c && LANG=C ./a.out
73 -> 105

=)

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to