summaryrefslogtreecommitdiff
path: root/include/con-utils.h
blob: f03dfb33abaafa02aa4b1689cf5867f3ffd334df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef CON_UTILS_H		
#define CON_UTILS_H

uint_fast8_t tstc(void);

int my_getchar(void);

/* test if ctrl-c was pressed */
uint_fast8_t ctrlc(void);


/* pass 1 to disable ctrlc() checking, 0 to enable.
 * returns previous state
 */
uint_fast8_t disable_ctrlc(uint_fast8_t disable);

uint_fast8_t had_ctrlc (void);
void clear_ctrlc(void);

#endif /* CON_UTILS_H */