mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-11-23 14:29:52 +00:00
15 lines
543 B
C
15 lines
543 B
C
|
|
void Util_UrlUnencode(char *enc);
|
|
char Util_toupper(char c);
|
|
char *Util_stristr(const char *String, const char *Pattern);
|
|
void Util_strupr(char *string);
|
|
int Util_wildcmp(char *wild, char *string);
|
|
int Util_strnicmp(const char *s1, const char *s2, size_t n);
|
|
char *Util_strrev(char *str);
|
|
char * Util_itoa(int v, char *s, int r);
|
|
void Util_Base64Encode( char *cpInput, char *cpOutput );
|
|
|
|
char * K_DecodeString(unsigned char *szInput);
|
|
void K_EncodeString(char *szInput, char *szOutput);
|
|
|
|
//----------------------------------------------------
|