moved backwards compatibility to amxmod.inc

This commit is contained in:
Felix Geyer
2004-03-07 11:23:57 +00:00
parent 484d482b49
commit 75ac8fd494
4 changed files with 4 additions and 38 deletions

View File

@ -35,22 +35,10 @@ native format(output[] ,len ,const format[] , {Float,_}:...);
native format_args(output[] ,len ,pos = 0);
/* Converts number to string. */
native num_to_str(num,string[],len);
stock numtostr(num,string[],len)
return num_to_str(num,string,len)
stock int_to_str(num,string[],len)
return num_to_str(num,string,len)
native int_to_str(num,string[],len);
/* Returns converted string to number. */
native str_to_num(const string[]);
stock strtonum(const string[])
return str_to_num(string)
stock str_to_int(const string[])
return str_to_num(string)
native str_to_int(const string[]);
/* Checks if two strings equal. If len var is set
* then there are only c chars comapred. */