aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/stdio/puts.c
blob: a4fd3ea4d14ca54830e1166c9e28c4d64989c61b (plain) (blame)
1
2
3
4
5
6
7
8
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]);
}