Mercurial > audlegacy
view src/libguess/turkish_impl.c @ 3867:e48f2f4c116d
- many remained audacious remote functions have been implemented.
- audtool improvement in progress.
author | Yoshiki Yazawa <yaz@cc.rim.or.jp> |
---|---|
date | Mon, 29 Oct 2007 22:21:42 +0900 |
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); }