From b938e955f53eb48ffb9985f6a70f4cf1dcc64474 Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Mon, 8 Mar 2004 17:28:57 +0000 Subject: [PATCH] removed stocks: int_to_str, str_to_int, numtostr and strtonum --- plugins/include/string.inc | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/plugins/include/string.inc b/plugins/include/string.inc index b0a6e964..85504106 100755 --- a/plugins/include/string.inc +++ b/plugins/include/string.inc @@ -40,18 +40,6 @@ native num_to_str(num,string[],len); /* Returns converted string to number. */ native str_to_num(const string[]); -stock int_to_str(num,string[],len) - return num_to_str(num,string,len) - -stock str_to_int(const string[]) - return str_to_num(string) - -stock numtostr(num,string[],len) - return num_to_str(num,string,len) - -stock strtonum(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);