1 .\" Copyright (c) 1989, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\" may be used to endorse or promote products derived from this software
14 .\" without specific prior written permission.
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" @(#)unvis.3 8.2 (Berkeley) 12/11/93
29 .\" $FreeBSD: src/lib/libc/gen/unvis.3,v 1.18 2007/01/09 00:27:56 imp Exp $
37 .Nd decode a visual representation of characters
43 .Fn unvis "char *cp" "int c" "int *astate" "int flag"
45 .Fn strunvis "char *dst" "const char *src"
47 .Fn strunvisx "char *dst" "const char *src" "int flag"
55 are used to decode a visual representation of characters, as produced
60 Unvis is called with successive characters in
63 sequence is recognized, at which time the decoded character is
64 available at the character pointed to by
67 characters pointed to by
69 into the buffer pointed to by
79 decoding any escape sequences along the way,
80 and returns the number of characters placed into
83 invalid escape sequence was detected.
89 (that is, no expansion takes place during
94 function does the same as the
97 but it allows you to add a flag that specifies the style the string
100 Currently, the only supported flag is
106 implements a state machine that can be used to decode an arbitrary
108 All state associated with the bytes being decoded
109 is stored outside the
111 function (that is, a pointer to the state is passed in), so
112 calls decoding different streams can be freely intermixed.
114 start decoding a stream of bytes, first initialize an integer
118 with each successive byte, along with a pointer
119 to this integer, and a pointer to a destination character.
123 has several return codes that must be handled properly.
125 .Bl -tag -width UNVIS_VALIDPUSH
127 Another character is necessary; nothing has been recognized yet.
129 A valid character has been recognized and is available at the location
131 .It Dv UNVIS_VALIDPUSH
132 A valid character has been recognized and is available at the location
133 pointed to by cp; however, the character currently passed in should
136 A valid sequence was detected, but no character was produced.
138 return code is necessary to indicate a logical break between characters.
140 An invalid escape sequence was detected, or the decoder is in an
142 The decoder is placed into the starting state.
145 When all bytes in the stream have been processed, call
151 to extract any remaining character (the character passed in is ignored).
155 argument is also used to specify the encoding style of the source.
159 will decode URI strings as specified in RFC 1808.
161 The following code fragment illustrates a proper use of
163 .Bd -literal -offset indent
167 while ((ch = getchar()) != EOF) {
169 switch(unvis(&out, ch, &state, 0)) {
176 case UNVIS_VALIDPUSH:
180 (void)fprintf(stderr, "bad sequence!\en");
184 if (unvis(&out, (char)0, &state, UNVIS_END) == UNVIS_VALID)
192 .%T Relative Uniform Resource Locators