#ifndef __SOME_WORK_WITH_STRINGS__
#define __SOME_WORK_WITH_STRINGS__


unsigned int char16to8(unsigned int c);
char *MakeGlobalString(const char *first, int breakchar, const char *last);
int strcmp_nocase(const char *s, const char *d);
unsigned short * wstrstr(unsigned short *ws, char *str, int *wslen, int len);
int strncmp_nocase(const char *s1,const char *s2,unsigned int n);
int toupper(int c);

#endif
