syslinux-3.08-2 sources from FC4
[bootcd.git] / syslinux / memdisk / conio.h
1 #ident "$Id: conio.h,v 1.5 2004/12/14 22:46:25 hpa Exp $"
2 /* ----------------------------------------------------------------------- *
3  *   
4  *   Copyright 2001 H. Peter Anvin - All Rights Reserved
5  *
6  *   This program is free software; you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation, Inc., 53 Temple Place Ste 330,
9  *   Boston MA 02111-1307, USA; either version 2 of the License, or
10  *   (at your option) any later version; incorporated herein by reference.
11  *
12  * ----------------------------------------------------------------------- */
13
14 /*
15  * conio.h
16  *
17  * Limited console I/O
18  */
19
20 #ifndef CONIO_H
21 #define CONIO_H
22
23 #include <stdint.h>
24 #include <stddef.h>
25 #include <stdarg.h>
26
27 int putchar(int);
28 int puts(const char *);
29 int printf(const char *, ...);
30 unsigned int atou(const char *);
31
32 #endif