blob: 3b545bbd473dad0bc42f1d7ab8a1ddc611b32326 [file] [log] [blame]
#include <stddef.h>
#include <com32.h>
#include <core.h>
#include <stdio.h>
#include <string.h>
void myputchar(int c)
{
if (c == '\n')
myputchar('\r');
writechr(c);
}
void myputs(const char *str)
{
while (*str)
myputchar(*str++);
}