nothing important

This commit is contained in:
Felix Geyer
2004-03-05 19:30:29 +00:00
parent b217f4d0c7
commit 79e0d80d4d
4 changed files with 73 additions and 58 deletions

View File

@ -1,8 +1,10 @@
/* Strings manipulation
*
* (c) 2002-2003, OLO
* This file is provided as is (no warranties).
*/
*
* by the AMX Mod X Development Team
* originally developed by OLO
*
* This file is provided as is (no warranties).
*/
#if defined _string_included
#endinput
@ -35,9 +37,21 @@ 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)
/* 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)
/* Checks if two strings equal. If len var is set
* then there are only c chars comapred. */
native equal(const a[],const b[],c=0);
@ -80,4 +94,4 @@ native isalpha(ch);
native isspace(ch);
/* Returns true when value is letter or digit. */
native isalnum(ch);
native isalnum(ch);