Files
Espresso/include/io.h

16 lines
278 B
C
Raw Permalink Normal View History

2025-05-28 14:41:02 -05:00
/* Defines a abstract base for I/O in the Espresso kernel. */
#ifndef ESPRESSO_IO_H
#define ESPRESSO_IO_H
#include <stdint.h>
void print(const char* str);
char* input(uint8_t dev=0);
void writefile(uint8_t mode, char* file, char* data);
char* readfile(char* file);
2025-06-13 18:03:39 -05:00
#endif