mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2025-01-23 12:18:03 +03:00
removed stocks: int_to_str, str_to_int, numtostr and strtonum
This commit is contained in:
parent
864c6d6aa4
commit
b938e955f5
@ -40,18 +40,6 @@ native num_to_str(num,string[],len);
|
|||||||
/* Returns converted string to number. */
|
/* Returns converted string to number. */
|
||||||
native str_to_num(const string[]);
|
native str_to_num(const string[]);
|
||||||
|
|
||||||
stock int_to_str(num,string[],len)
|
|
||||||
return num_to_str(num,string,len)
|
|
||||||
|
|
||||||
stock str_to_int(const string[])
|
|
||||||
return str_to_num(string)
|
|
||||||
|
|
||||||
stock numtostr(num,string[],len)
|
|
||||||
return num_to_str(num,string,len)
|
|
||||||
|
|
||||||
stock strtonum(const string[])
|
|
||||||
return str_to_num(string)
|
|
||||||
|
|
||||||
/* Checks if two strings equal. If len var is set
|
/* Checks if two strings equal. If len var is set
|
||||||
* then there are only c chars comapred. */
|
* then there are only c chars comapred. */
|
||||||
native equal(const a[],const b[],c=0);
|
native equal(const a[],const b[],c=0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user