diff options
Diffstat (limited to 'src/userspace/libc/stdio/puts.c')
-rw-r--r-- | src/userspace/libc/stdio/puts.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/userspace/libc/stdio/puts.c b/src/userspace/libc/stdio/puts.c new file mode 100644 index 0000000..a4fd3ea --- /dev/null +++ b/src/userspace/libc/stdio/puts.c @@ -0,0 +1,9 @@ +#include <stdint.h> +#include <stdio.h> +#include <string.h> + +void puts(char *data) +{ + for (u8 i = 0; i < strlen(data); i++) + putch(data[i]); +}
\ No newline at end of file |