diff options
Diffstat (limited to 'libc/include')
| -rw-r--r-- | libc/include/stdio.h | 3 | ||||
| -rw-r--r-- | libc/include/string.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/libc/include/stdio.h b/libc/include/stdio.h new file mode 100644 index 0000000..32391b8 --- /dev/null +++ b/libc/include/stdio.h @@ -0,0 +1,3 @@ +int printf(const char* fmt, ...); +int puts(const char*); +int putchar(int); diff --git a/libc/include/string.h b/libc/include/string.h new file mode 100644 index 0000000..650a7ac --- /dev/null +++ b/libc/include/string.h @@ -0,0 +1,3 @@ +#include <stddef.h> +int strlen(const char*); +void* memset(void*, int, size_t); |