home *** CD-ROM | disk | FTP | other *** search
- /* SMiLE -- Simple MIni Line Editor
- Copyright (C) 1989 By Alejandro Liu
- You are given permission to Freely Copy and distribute this program
- in its unmodifed form provided that this copyright notice is included.
- */
-
- #define prtchr(dta) putchar(dta)
- #define NEWLIN '\n'
- #define beep() prtchr(7)
- #define prtstr(string) printf(string)
- #define getkey() getchar()
-