clippy command works

This commit is contained in:
Lauchmelder 2022-01-20 13:06:34 +01:00
parent 5fcbdb0b19
commit f4f5f027f2
3 changed files with 23 additions and 7 deletions

3
include/string.h Normal file
View file

@ -0,0 +1,3 @@
#pragma once
int strcmp(const char* str1, const char* str2);

View file

@ -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
View 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;
}