mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
16 lines
262 B
C
16 lines
262 B
C
|
/*
|
||
|
*
|
||
|
* (c) 2004 Laurent Vivier <Laurent@lvivier.info>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __CONSOLE_H__
|
||
|
#define __CONSOLE_H__
|
||
|
|
||
|
#include <macos/types.h>
|
||
|
|
||
|
extern void console_init(void);
|
||
|
extern inline int console_putchar(int c);
|
||
|
extern void console_putstring(const char *s);
|
||
|
#endif
|