removed strtonum and numtostr

This commit is contained in:
Pavol Marko 2004-03-05 18:55:13 +00:00
parent 71b590eb15
commit 4984e4b5a2

View File

@ -1,10 +1,8 @@
/* Strings manipulation /* Strings manipulation
* *
* by the AMX Mod X Development Team * (c) 2002-2003, OLO
* originally developed by OLO * This file is provided as is (no warranties).
* */
* This file is provided as is (no warranties).
*/
#if defined _string_included #if defined _string_included
#endinput #endinput
@ -36,11 +34,9 @@ native format_args(output[] ,len ,pos = 0);
/* Converts number to string. */ /* Converts number to string. */
native num_to_str(num,string[],len); native num_to_str(num,string[],len);
native numtostr(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[]);
native strtonum(const 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. */