Subversion Repositories HelenOS

Rev

Rev 4154 | Rev 4164 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4154 Rev 4160
Line 35... Line 35...
35
#ifndef LIBC_CONSOLE_H_
35
#ifndef LIBC_CONSOLE_H_
36
#define LIBC_CONSOLE_H_
36
#define LIBC_CONSOLE_H_
37
 
37
 
38
#include <console/style.h>
38
#include <console/style.h>
39
#include <console/color.h>
39
#include <console/color.h>
-
 
40
#include <bool.h>
40
 
41
 
41
extern void console_open(void);
42
extern void console_open(bool);
42
extern void console_close(void);
43
extern void console_close(void);
43
 
44
 
44
extern int console_phone_get(void);
45
extern int console_phone_get(bool);
45
extern void console_wait(void);
46
extern void console_wait(void);
46
 
47
 
47
extern void console_clear(void);
48
extern void console_clear(void);
48
extern void console_goto(int, int);
49
extern void console_goto(int, int);
49
extern void console_putchar(int);
50
extern void console_putchar(int);