setList() will invalidate itself
[enigma2.git] / lib / base / estring.h
1 #ifndef __E_STRING__
2 #define __E_STRING__
3
4 #include <string>
5 #include <stdarg.h>
6 #include <stdio.h>
7 #include "eerror.h"
8
9 int strnicmp(const char*, const char*, int);
10
11 std::string getNum(int num, int base=10);
12 std::string convertDVBUTF8(const unsigned char *data, int len, int table=5);
13 std::string convertUTF8DVB(const std::string &string);  // with default ISO8859-5
14 std::string convertDVBUTF8(const std::string &s, int table=5);
15 std::string convertLatin1UTF8(const std::string &string);
16 int isUTF8(const std::string &string);
17
18 #endif // __E_STRING__