source: bootcd/isolinux/syslinux-6.03/core/console.c @ dd1be7c

Last change on this file since dd1be7c was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 249 bytes
Line 
1#include <stddef.h>
2#include <com32.h>
3#include <core.h>
4#include <stdio.h>
5#include <string.h>
6
7void myputchar(int c)
8{
9    if (c == '\n')
10        myputchar('\r');
11
12    writechr(c);
13}
14
15void myputs(const char *str)
16{
17    while (*str)
18        myputchar(*str++);
19}
Note: See TracBrowser for help on using the repository browser.