]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libncurses/unctrl.h
wscrl: implement partial scrolling via al/dl
[FreeBSD/FreeBSD.git] / lib / libncurses / unctrl.h
1
2 /*
3  * unctrl.h
4  *
5  * Display a printable version of a control character.
6  * Control characters are displayed in caret notation (^x), DELETE is displayed
7  * as ^?. Printable characters sre displatyed as is.
8  *
9  * The returned pointer points to a static buffer which gets overwritten by
10  * each call. Therefore, you must copy the resulting string to a safe place
11  * before calling unctrl() again.
12  *
13  */
14 #ifndef _UNCTRL_H
15 #define _UNCTRL_H       1
16
17 #include <sys/cdefs.h>
18
19 extern char *unctrl __P((unsigned char));
20
21 #endif /* _UNCTRL_H */