Files
photon/photon/libc/stdio/fputs.c

10 lines
140 B
C
Raw Normal View History

2020-04-01 11:58:54 +01:00
#include <stdio.h>
#include <__fio.h>
int fputs(const char *str, FILE *fp)
{
while (*str) {
__fio_write(fp, str++, 1);
}
}