added numtostr() and strtonum()

This commit is contained in:
Felix Geyer 2004-03-08 17:19:41 +00:00
parent 10a28dcde9
commit d37bdc026c

View File

@ -24,7 +24,6 @@ stock get_user_hitzones(index,target)
stock user_spawn(index)
return spawn(index)
/* use log_amx() instead */
stock get_logfile( name[], len )
return get_time("admin%m%d.log",name,len)
@ -33,3 +32,9 @@ stock get_user_money(index)
stock set_user_money(index,money,flash=1)
return cs_set_user_money(index,money,flash)
stock numtostr(num,string[],len)
return num_to_str(num,string,len)
stock strtonum(const string[])
return str_to_num(string)