VIS(3) BSD Library Functions Manual VIS(3)
NAME
vis, nvis, strvis, strnvis, strvisx, strnvisx, strenvisx, svis, snvis, strsvis, strsnvis, strsvisx, strsnvisx, strsenvisx -- visually encode
characters
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <vis.h>
char *
vis(char *dst, int c, int flag, int nextc);
char *
nvis(char *dst, size_t dlen, int c, int flag, int nextc);
int
strvis(char *dst, const char *src, int flag);
int
strnvis(char *dst, size_t dlen, const char *src, int flag);
int
strvisx(char *dst, const char *src, size_t len, int flag);
int
strnvisx(char *dst, size_t dlen, const char *src, size_t len, int flag);
int
strenvisx(char *dst, size_t dlen, const char *src, size_t len, int flag, int *cerr_ptr);
char *
svis(char *dst, int c, int flag, int nextc, const char *extra);
char *
snvis(char *dst, size_t dlen, int c, int flag, int nextc, const char *extra);
int
strsvis(char *dst, const char *src, int flag, const char *extra);
int
strsnvis(char *dst, size_t dlen, const char *src, int flag, const char *extra);
int
strsvisx(char *dst, const char *src, size_t len, int flag, const char *extra);
int
strsnvisx(char *dst, size_t dlen, const char *src, size_t len, int flag, const char *extra);
int
strsenvisx(char *dst, size_t dlen, const char *src, size_t len, int flag, const char *extra, int *cerr_ptr);
DESCRIPTION
The vis() function copies into dst a string which represents the character c. If c needs no encoding, it is copied in unaltered. The string
is null terminated, and a pointer to the end of the string is returned. The maximum length of any encoding is four bytes (not including the
trailing NUL); thus, when encoding a set of characters into a buffer, the size of the buffer should be four times the number of bytes
encoded, plus one for the trailing NUL. The flag parameter is used for altering the default range of characters considered for encoding and
for altering the visual representation. The additional character, nextc, is only used when selecting the VIS_CSTYLE encoding format
(explained below).
The strvis(), strnvis(), strvisx(), and strnvisx() functions copy into dst a visual representation of the string src. The strvis() and
strnvis() functions encode characters from src up to the first NUL. The strvisx() and strnvisx() functions encode exactly len characters
from src (this is useful for encoding a block of data that may contain NUL's). Both forms NUL terminate dst. The size of dst must be four
times the number of bytes encoded from src (plus one for the NUL). Both forms return the number of characters in dst (not including the
trailing NUL). The ``n'' versions of the functions also take an additional argument dlen that indicates the length of the dst buffer. If
dlen is not large enough to fit the converted string then the strnvis() and strnvisx() functions return -1 and set errno to ENOSPC. The
strenvisx() function takes an additional argument, cerr_ptr, that is used to pass in and out a multibyte conversion error flag. This is use-
ful when processing single characters at a time when it is possible that the locale may be set to something other than the locale of the
characters in the input data.
The functions svis(), snvis(), strsvis(), strsnvis(), strsvisx(), strsnvisx(), and strsenvisx() correspond to vis(), nvis(), strvis(),
strnvis(), strvisx(), strnvisx(), and strenvisx() but have an additional argument extra, pointing to a NUL terminated list of characters.
These characters will be copied encoded or backslash-escaped into dst. These functions are useful e.g. to remove the special meaning of cer-
tain characters to shells.
The encoding is a unique, invertible representation composed entirely of graphic characters; it can be decoded back into the original form
using the unvis(3), strunvis(3) or strnunvis(3) functions.
There are two parameters that can be controlled: the range of characters that are encoded (applies only to vis(), nvis(), strvis(),
strnvis(), strvisx(), and strnvisx()), and the type of representation used. By default, all non-graphic characters, except space, tab, and
newline are encoded (see isgraph(3)). The following flags alter this:
VIS_GLOB Also encode the magic characters ('*', '?', '[' and '#') recognized by glob(3).
VIS_SP Also encode space.
VIS_TAB Also encode tab.
VIS_NL Also encode newline.
VIS_WHITE Synonym for VIS_SP | VIS_TAB | VIS_NL.
VIS_SAFE Only encode ``unsafe'' characters. Unsafe means control characters which may cause common terminals to perform unexpected func-
tions. Currently this form allows space, tab, newline, backspace, bell, and return -- in addition to all graphic characters --
unencoded.
(The above flags have no effect for svis(), snvis(), strsvis(), strsnvis(), strsvisx(), and strsnvisx(). When using these functions, place
all graphic characters to be encoded in an array pointed to by extra. In general, the backslash character should be included in this array,
see the warning on the use of the VIS_NOSLASH flag below).
There are four forms of encoding. All forms use the backslash character '' to introduce a special sequence; two backslashes are used to
represent a real backslash, except VIS_HTTPSTYLE that uses '%', or VIS_MIMESTYLE that uses '='. These are the visual formats:
(default) Use an 'M' to represent meta characters (characters with the 8th bit set), and use caret '^' to represent control characters (see
iscntrl(3)). The following formats are used:
^C Represents the control character 'C'. Spans characters '