mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-23 01:29:34 +00:00
18 lines
297 B
C
18 lines
297 B
C
/*
|
|
*
|
|
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
#ifndef __CONSOLE_H__
|
|
#define __CONSOLE_H__
|
|
|
|
#include "misc.h"
|
|
#include "head.h"
|
|
|
|
extern void console_init(emile_l2_header_t* info);
|
|
extern inline int console_putchar(int c);
|
|
extern void console_putstring(const char *s);
|
|
|
|
#endif
|