Home
last modified time | relevance | path

Searched refs:control_character_bit (Results 1 – 4 of 4) sorted by relevance

/openbsd/gnu/usr.bin/texinfo/info/
H A Dinfomap.h38 #define control_character_bit 0x40 macro
45 #define Control(c) ((toupper (c)) & (~control_character_bit))
46 #define UnControl(c) (tolower ((c) | control_character_bit))
/openbsd/gnu/usr.bin/texinfo/makeinfo/
H A Dmakeinfo.h245 #define control_character_bit 0x40 /* %01000000, must be off. */ macro
247 #define CTL(c) ((c) & (~control_character_bit))
248 #define UNCTL(c) coerce_to_upper(((c)|control_character_bit))
/openbsd/lib/libedit/readline/
H A Dreadline.h75 #define control_character_bit 0x40 macro
87 #define UNCTRL(c) (((c) - 'a' + 'A')|control_character_bit)
/openbsd/gnu/lib/libreadline/
H A Dchardefs.h57 #define control_character_bit 0x40 /* 0x000000, must be off. */ macro
68 #define UNCTRL(c) _rl_to_upper(((c)|control_character_bit))