diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-01-31 21:52:01 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-01-31 21:52:01 +0000 |
commit | 3c06f6a0b234822c7b2d6c63ef1aaf554af7167b (patch) | |
tree | 86e5fe626cb9cbade752baf2440badfa19976200 /bsd-vis.h | |
parent | bf75776d415126a415ac92fb767c70dc67feba4f (diff) |
- (bal) Reorder. Move all bsd-*, fake-*, next-*, and cygwin* stuff to
openbsd-compat/. And resolve all ./configure and Makefile.in issues
assocated.
Logic:
* All OpenBSD functions should have the same filename as in the OpenBSD
tree
* All 'home brew' functions have bsd-* infront of them.
* All 'not really implemented' functions have fake-* infront of them.
Diffstat (limited to 'bsd-vis.h')
-rw-r--r-- | bsd-vis.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/bsd-vis.h b/bsd-vis.h deleted file mode 100644 index 52e867b94..000000000 --- a/bsd-vis.h +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | #ifndef _BSD_VIS_H | ||
2 | #define _BSD_VIS_H | ||
3 | |||
4 | #include "config.h" | ||
5 | |||
6 | #ifndef HAVE_VIS | ||
7 | |||
8 | /* | ||
9 | * to select alternate encoding format | ||
10 | */ | ||
11 | #define VIS_OCTAL 0x01 /* use octal \ddd format */ | ||
12 | #define VIS_CSTYLE 0x02 /* use \[nrft0..] where appropriate */ | ||
13 | |||
14 | /* | ||
15 | * to alter set of characters encoded (default is to encode all | ||
16 | * non-graphic except space, tab, and newline). | ||
17 | */ | ||
18 | #define VIS_SP 0x04 /* also encode space */ | ||
19 | #define VIS_TAB 0x08 /* also encode tab */ | ||
20 | #define VIS_NL 0x10 /* also encode newline */ | ||
21 | #define VIS_WHITE (VIS_SP | VIS_TAB | VIS_NL) | ||
22 | #define VIS_SAFE 0x20 /* only encode "unsafe" characters */ | ||
23 | |||
24 | /* | ||
25 | * other | ||
26 | */ | ||
27 | #define VIS_NOSLASH 0x40 /* inhibit printing '\' */ | ||
28 | |||
29 | char *vis (char *, int, int, int); | ||
30 | #endif /* HAVE_VIS */ | ||
31 | |||
32 | #endif /* _BSD_VIS_H */ | ||