summaryrefslogtreecommitdiffstats
path: root/lib/libncurses/unctrl.h
blob: c80689c060053608710f7b91b3c35eb3fbd8729e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

/*
 * unctrl.h
 *
 * Display a printable version of a control character.
 * Control characters are displayed in caret notation (^x), DELETE is displayed
 * as ^?. Printable characters sre displatyed as is.
 *
 * The returned pointer points to a static buffer which gets overwritten by
 * each call. Therefore, you must copy the resulting string to a safe place
 * before calling unctrl() again.
 *
 */
#ifndef _UNCTRL_H
#define _UNCTRL_H	1

#include <sys/cdefs.h>

extern char *unctrl __P((unsigned char));

#endif /* _UNCTRL_H */
OpenPOWER on IntegriCloud