Removed bad str/num funcs
This commit is contained in:
parent
c6dd8eac6b
commit
297e1a4d29
|
@ -37,9 +37,15 @@ native format_args(output[] ,len ,pos = 0);
|
||||||
/* Converts number to string. */
|
/* Converts number to string. */
|
||||||
native numtostr(num,string[],len);
|
native numtostr(num,string[],len);
|
||||||
|
|
||||||
|
stock int_to_str(num, string[], len)
|
||||||
|
return numtostr(num, string[], len);
|
||||||
|
|
||||||
/* Returns converted string to number. */
|
/* Returns converted string to number. */
|
||||||
native strtonum(string[]);
|
native strtonum(string[]);
|
||||||
|
|
||||||
|
stock str_to_int(string[])
|
||||||
|
return strtonum(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…
Reference in New Issue
Block a user