Newer
Older
tree-os / src / include / _stdio.h
@lukas lukas on 25 Aug 2021 146 bytes :refactor terminal
#ifndef STDIO_H
#define STDIO_H

#include <stdint.h>

extern void printf(const char *format, ...);

extern uint32_t strlen(char *string);

#endif