summaryrefslogtreecommitdiff
path: root/include/libc/console_io.h
blob: 2399e98075e27b26f97f066d3444b83d323458f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _CONSOLE_IO
#define _CONSOLE_IO

#include "stddef.h"
#include "file_struc.h"

#ifdef __cplusplus
extern "C" {
#endif

int __write_console(__file_handle handle, unsigned char * buffer, size_t * count, __idle_proc idle_proc);

#ifdef __cplusplus
}
#endif

#endif // _CONSOLE_IO