Sign in
android
/
platform
/
external
/
syslinux
/
refs/heads/o-preview-2
/
.
/
core
/
console.c
blob: 3b545bbd473dad0bc42f1d7ab8a1ddc611b32326 [
file
] [
log
] [
blame
] [
edit
]
#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
++);
}