mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-13 01:05:37 +00:00
12 lines
443 B
C
12 lines
443 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 );
|
|
|
|
//----------------------------------------------------
|