mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 06:08:49 +00:00
19 lines
279 B
C
19 lines
279 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 void console_put(char c);
|
|
extern void console_print(char *s);
|
|
|
|
#endif
|