home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Professional
/
OS2PRO194.ISO
/
os2
/
editor
/
stevie
/
ascii.h
< prev
next >
Wrap
Text File
|
1994-01-31
|
416b
|
18 lines
/* $Header: /nw/tony/src/stevie/src/RCS/ascii.h,v 1.2 89/03/11 22:42:03 tony Exp $
*
* Definitions of various common control characters
*/
#define NUL '\0'
#define BS '\010'
#define TAB '\011'
#define NL '\012'
#define CR '\015'
#define ESC '\033'
#define DEL '\177'
#define CTRL(x) ((x) & 0x1f)
#define MK_FP(seg,ofs) ((void far *) \
(((unsigned long)(seg) << 16) | (unsigned)(ofs)))