17 lines
324 B
C
17 lines
324 B
C
#ifndef __input_output_h_
|
|
#define __input_output_h_
|
|
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
#include<unistd.h>
|
|
#include<sys/select.h>
|
|
#include<signal.h>
|
|
|
|
#include "conf.h"
|
|
void put_line(char * line);
|
|
void clear_screen(void);
|
|
char kb_hit(void);
|
|
char get_last_key_or_default(void);
|
|
static volatile char EOF_received = 0;
|
|
|
|
#endif
|