From 0aa44015f4501f618280f095b4a4c477e69b3541 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Gu=C3=A9gan?= Date: Mon, 24 Mar 2025 09:53:41 +0100 Subject: [PATCH] Clean code --- src/libs/utils.c | 18 ++++++------------ src/libs/utils.h | 1 - src/main.c | 13 ++++++++----- 3 files changed, 14 insertions(+), 18 deletions(-) diff --git a/src/libs/utils.c b/src/libs/utils.c index 75b5661..b6500ef 100644 --- a/src/libs/utils.c +++ b/src/libs/utils.c @@ -12,6 +12,7 @@ void memset(u8 *start, u8 value, u32 size){ } } +// The following implementation is incomplete int modulo(int dividend, int divisor){ while((dividend-divisor)>0){dividend-=divisor;} return dividend; @@ -21,14 +22,7 @@ int strlen(char * cp) { int len=0; while( cp[len++]) ; - return len - 1 ; //because it counted the zero which we don't want. -} - -int wordlen(char *s) -{ - int len=0; - while( *s!='\n' && *s!='\0' && *s!=' '){ s++; } - return len - 1 ; //because it counted the zero which we don't want. + return len - 1 ; } u8 strcmp(char *str1, char*str2){ @@ -43,11 +37,11 @@ u8 strcmp(char *str1, char*str2){ u8 strncmp(char *str1, char *str2, int n){ for(int i=0;i=32 && c <= 127){ // Printable char *cmdptr=c; cmdptr++; tty_putchar(c); } } - - return; }