Renamed tty.h to stdio.h

Added puts() declaration
This commit is contained in:
2021-04-12 01:41:52 -05:00
parent 1f7ef81149
commit b3b2921b7e

11
include/stdio.h Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
#include <stdarg.h>
int putchar(int c);
int puts(const char *str);
int printf(const char *format, ...);
int sprintf(char *str, const char *format, ...);