about summary refs log tree commit diff stats
path: root/numericx.c
diff options
context:
space:
mode:
Diffstat (limited to 'numericx.c')
-rw-r--r--numericx.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/numericx.c b/numericx.c
index 14f23f3..792a4c3 100644
--- a/numericx.c
+++ b/numericx.c
@@ -63,20 +63,6 @@ increment(numeral_ptr* numeral, char* num_first, char* num_last)
 }
 
 bool
-is_same_size(numeral_ptr* numeral, char* number_string)
-{
-	for( size_t i = strlen(number_string) ; !(i == 0) ; ++i )
-	{
-		if(numeral == NULL)
-			return false;
-
-		numeral = numeral->next;
-	}
-
-	return (numeral == NULL) ? true : false;
-}
-
-bool
 is_the_same(numeral_ptr* numeral, char* number_arg)
 {
 	while( !(numeral == NULL) )