Espresso 0.0.2a

This commit is contained in:
2025-10-20 21:57:30 -05:00
parent 102d517097
commit ff6cba1164
59 changed files with 29272 additions and 773 deletions

View File

@ -1,5 +1,6 @@
#include <drivers/ps2_keyboard.h>
#include <fs/vfs.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
@ -25,6 +26,13 @@ char* getstring(void)
return "HELLO\0";
}
char* gets(void)
{
return kbd_gets();
}
/*char* fgets(char* buf, int n, FILE file)
{
if (!buf || n <= 1 || file < 1)