mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 14:37:29 +08:00
18 lines
635 B
C
18 lines
635 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 );
|
|
bool ContainsInvalidNickChars(char * szString);
|
|
void ReplaceBadChars(char * szString);
|
|
int CanFileBeOpenedForReading(char * filename);
|
|
|
|
//----------------------------------------------------
|