clippy command works
This commit is contained in:
parent
5fcbdb0b19
commit
f4f5f027f2
3
include/string.h
Normal file
3
include/string.h
Normal file
|
@ -0,0 +1,3 @@
|
|||
#pragma once
|
||||
|
||||
int strcmp(const char* str1, const char* str2);
|
15
src/kernel.c
15
src/kernel.c
|
@ -1,5 +1,6 @@
|
|||
#include "io.h"
|
||||
#include "convert.h"
|
||||
#include "string.h"
|
||||
|
||||
void print_clippy();
|
||||
|
||||
|
@ -24,19 +25,19 @@ void main()
|
|||
{
|
||||
uart_puts("\n\nPlease enter first operand\n");
|
||||
uart_puts("📎 ");
|
||||
int a = stoi(uart_gets(buffer));
|
||||
|
||||
uart_puts("\nPlease enter second operand\n");
|
||||
uart_puts("📎 ");
|
||||
uart_gets(buffer);
|
||||
|
||||
if(buffer == "clippy")
|
||||
|
||||
if(!strcmp(buffer, "clippy"))
|
||||
{
|
||||
print_clippy();
|
||||
continue;
|
||||
}
|
||||
|
||||
int b = stoi(buffer);
|
||||
int a = stoi(buffer);
|
||||
|
||||
uart_puts("\nPlease enter second operand\n");
|
||||
uart_puts("📎 ");
|
||||
int b = stoi(uart_gets(buffer));
|
||||
|
||||
uart_puts("\n");
|
||||
uart_puts(itoa(a, buffer));
|
||||
|
|
12
src/string.c
Normal file
12
src/string.c
Normal file
|
@ -0,0 +1,12 @@
|
|||
#include "string.h"
|
||||
|
||||
int strcmp(const char* str1, const char* str2)
|
||||
{
|
||||
while(*str1)
|
||||
{
|
||||
int diff = *str1++ - *str2++;
|
||||
if(diff) return diff;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in a new issue