repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add memtest support.
[syslinux-debian/hramrach.git]
/
core
/
console.c
blob
3b545bbd473dad0bc42f1d7ab8a1ddc611b32326
1
#include <stddef.h>
2
#include <com32.h>
3
#include <core.h>
4
#include <stdio.h>
5
#include <string.h>
6
7
void
myputchar
(
int
c
)
8
{
9
if
(
c
==
'
\n
'
)
10
myputchar
(
'
\r
'
);
11
12
writechr
(
c
);
13
}
14
15
void
myputs
(
const char
*
str
)
16
{
17
while
(*
str
)
18
myputchar
(*
str
++);
19
}