projects
/
ncurses.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
ncurses 4.1
[ncurses.git]
/
c++
/
internal.h
1
#ifndef CPLUS_INTERNAL_H
2
#define CPLUS_INTERNAL_H 1
3
4
#include <ncurses_cfg.h>
5
6
#ifdef USE_RCS_IDS
7
#define MODULE_ID(id) static const char Ident[] = id;
8
#else
9
#define MODULE_ID(id) /*nothing*/
10
#endif
11
12
#define CTRL(x) ((x) & 0x1f)
13
14
#endif