remove useless function

This commit is contained in:
Xamora 2024-12-04 17:37:38 +01:00
parent 591e5c7e21
commit 1588f6ec5f
2 changed files with 0 additions and 11 deletions

View file

@ -23,5 +23,3 @@ int number_of_element(char *str, char c);
long gmc(long a, long b);
long lmc(long a, long b);
long lmcs(int array[], int n);
int strslen(char **strs);

View file

@ -82,12 +82,3 @@ long lmcs(int array[], int n) {
result = lmc(result, array[i]);
return result;
}
int strslen(char **strs) {
int len = 0;
for (int i = 0; strs[i] != NULL; i++)
len++;
return len;
}