From 297e1a4d29ad091d76206465e890e4492ce9e425 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 8 Mar 2004 05:29:51 +0000 Subject: [PATCH] Removed bad str/num funcs --- plugins/include/string.inc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/include/string.inc b/plugins/include/string.inc index 985fb8d3..11cdd428 100755 --- a/plugins/include/string.inc +++ b/plugins/include/string.inc @@ -37,9 +37,15 @@ native format_args(output[] ,len ,pos = 0); /* Converts number to string. */ native numtostr(num,string[],len); +stock int_to_str(num, string[], len) + return numtostr(num, string[], len); + /* Returns converted string to number. */ native strtonum(string[]); +stock str_to_int(string[]) + return strtonum(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);