Changeset View
Changeset View
Standalone View
Standalone View
bin/ed/ed.h
| Show All 30 Lines | |||||
| #include <errno.h> | #include <errno.h> | ||||
| #include <limits.h> | #include <limits.h> | ||||
| #include <regex.h> | #include <regex.h> | ||||
| #include <signal.h> | #include <signal.h> | ||||
| #include <stdio.h> | #include <stdio.h> | ||||
| #include <stdlib.h> | #include <stdlib.h> | ||||
| #include <string.h> | #include <string.h> | ||||
| #include <unistd.h> | #include <unistd.h> | ||||
| #include <wchar.h> | |||||
| #include <wctype.h> | |||||
| #define ERR (-2) | #define ERR (-2) | ||||
| #define EMOD (-3) | #define EMOD (-3) | ||||
| #define FATAL (-4) | #define FATAL (-4) | ||||
| #define MINBUFSZ 512 /* minimum buffer size - must be > 0 */ | #define MINBUFSZ 512 /* minimum buffer size - must be > 0 */ | ||||
| #define SE_MAX 30 /* max subexpressions in a regular expression */ | #define SE_MAX 30 /* max subexpressions in a regular expression */ | ||||
| #ifdef INT_MAX | #ifdef INT_MAX | ||||
| ▲ Show 20 Lines • Show All 226 Lines • Show Last 20 Lines | |||||