mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-09-19 12:16:15 +08:00
[bot] Implement all util functions
This commit is contained in:
17
bot/runutil.h
Normal file
17
bot/runutil.h
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
//----------------------------------------------------
|
||||
|
||||
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);
|
||||
|
||||
//----------------------------------------------------
|
Reference in New Issue
Block a user