Clean code

This commit is contained in:
Loïc Guégan 2025-03-24 09:53:41 +01:00
parent 7741f01445
commit 0aa44015f4
3 changed files with 14 additions and 18 deletions

View file

@ -12,6 +12,7 @@ void memset(u8 *start, u8 value, u32 size){
} }
} }
// The following implementation is incomplete
int modulo(int dividend, int divisor){ int modulo(int dividend, int divisor){
while((dividend-divisor)>0){dividend-=divisor;} while((dividend-divisor)>0){dividend-=divisor;}
return dividend; return dividend;
@ -21,14 +22,7 @@ int strlen(char * cp)
{ {
int len=0; int len=0;
while( cp[len++]) ; while( cp[len++]) ;
return len - 1 ; //because it counted the zero which we don't want. return len - 1 ;
}
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.
} }
u8 strcmp(char *str1, char*str2){ u8 strcmp(char *str1, char*str2){
@ -43,11 +37,11 @@ u8 strcmp(char *str1, char*str2){
u8 strncmp(char *str1, char *str2, int n){ u8 strncmp(char *str1, char *str2, int n){
for(int i=0;i<n;i++){ for(int i=0;i<n;i++){
if(str1[i] == '\0' || str2[i] == '\0') if(str1[i] == '\0' || str2[i] == '\0'){
break; return str1[i] != str2[i];
}
if(str1[i] != str2[i]) if(str1[i] != str2[i])
return 1; return 1;
} }
return 0;
return *str1 != *str2;
} }

View file

@ -23,7 +23,6 @@ int modulo(int dividend, int divisor); // Assumes that both argument are positve
// Strings (not these functions do not follow libc standards and are buggy) // Strings (not these functions do not follow libc standards and are buggy)
int strlen(char * cp); int strlen(char * cp);
int wordlen(char *s);
u8 strcmp(char *str1, char*str2); u8 strcmp(char *str1, char*str2);
u8 strncmp(char *str1, char*str2, int n); u8 strncmp(char *str1, char*str2, int n);

View file

@ -12,10 +12,13 @@ char cmd[64];
char *cmdptr=cmd; char *cmdptr=cmd;
// Execute command from cmd buffer // Execute command from cmd buffer
// This is a test function which is buggy
void exec(){ void exec(){
if(!strncmp(cmd, "blink", strlen("exit"))) if(cmd == cmdptr)
return;
else if(!strncmp(cmd, "blink", 5))
gpio_blink_led(1); gpio_blink_led(1);
else if(!strncmp(cmd, "help", strlen("help"))) else if(!strncmp(cmd, "help", 4))
tty_putstr(HELP); tty_putstr(HELP);
else if(cmdptr != cmd) else if(cmdptr != cmd)
tty_putstr("Unknown command (see help)\n\r"); tty_putstr("Unknown command (see help)\n\r");
@ -30,6 +33,8 @@ void main(){
// REPL // REPL
// TODO: Handling arrows etc.
// Pressing arrow freezes the shell
char c=tty_getchar(); char c=tty_getchar();
tty_putstr(MOTD); tty_putstr(MOTD);
tty_putstr(PROMPT); tty_putstr(PROMPT);
@ -47,14 +52,12 @@ void main(){
cmdptr--; cmdptr--;
} }
} }
else{ else if(c>=32 && c <= 127){ // Printable char
*cmdptr=c; *cmdptr=c;
cmdptr++; cmdptr++;
tty_putchar(c); tty_putchar(c);
} }
} }
return; return;
} }