summaryrefslogtreecommitdiff
path: root/openbsd-compat/vis.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-09-20 02:07:50 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-09-20 02:07:50 +0000
commit84a6bfba15e833a9b70de130f9427245fca89724 (patch)
tree851077a469e759473ada938ba5ff5507b6976aee /openbsd-compat/vis.h
parent03598a1c230962db9befb8f8e5ccdab3d0449346 (diff)
downloadopenssh-git-84a6bfba15e833a9b70de130f9427245fca89724.tar.gz
- (bal) openbsd-compat/vis.[ch] is dead wood. Removed.
Diffstat (limited to 'openbsd-compat/vis.h')
-rw-r--r--openbsd-compat/vis.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/openbsd-compat/vis.h b/openbsd-compat/vis.h
deleted file mode 100644
index 677fe959..00000000
--- a/openbsd-compat/vis.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/* $Id: vis.h,v 1.2 2001/02/09 01:55:37 djm Exp $ */
-
-#ifndef _BSD_VIS_H
-#define _BSD_VIS_H
-
-#include "config.h"
-
-#ifndef HAVE_VIS
-
-/*
- * to select alternate encoding format
- */
-#define VIS_OCTAL 0x01 /* use octal \ddd format */
-#define VIS_CSTYLE 0x02 /* use \[nrft0..] where appropriate */
-
-/*
- * to alter set of characters encoded (default is to encode all
- * non-graphic except space, tab, and newline).
- */
-#define VIS_SP 0x04 /* also encode space */
-#define VIS_TAB 0x08 /* also encode tab */
-#define VIS_NL 0x10 /* also encode newline */
-#define VIS_WHITE (VIS_SP | VIS_TAB | VIS_NL)
-#define VIS_SAFE 0x20 /* only encode "unsafe" characters */
-
-/*
- * other
- */
-#define VIS_NOSLASH 0x40 /* inhibit printing '\' */
-
-char *vis (char *, int, int, int);
-#endif /* HAVE_VIS */
-
-#endif /* _BSD_VIS_H */