Mercurial > audlegacy
view src/libguess/turkish_impl.c @ 4818:078e37740696
Fix up: WARNING **: Could not load desktop file /usr/share/applications/audacious.desktop: No such file or directory - Session management may not work now.
author | Tony Vroon <chainsaw@gentoo.org> |
---|---|
date | Fri, 16 Jan 2009 23:44:42 +0000 |
parents | 6bcfc6561711 |
children |
line wrap: on
line source
#include "libguess.h" static const char *_guess_tr(const unsigned char *ptr, int size) { int i; for (i = 0; i < size; i++) { if (ptr[i] == 0x80 || (ptr[i] >= 0x82 && ptr[i] <= 0x8C) || (ptr[i] >= 0x91 && ptr[i] <= 0x9C) || ptr[ i ] == 0x9F) return "CP1254"; } return "ISO-8859-9"; } const char *guess_tr(const char *ptr, int size) { if (dfa_validate_utf8(ptr, size)) return "UTF-8"; return _guess_tr((const unsigned char *)ptr, size); }