1 .\" $NetBSD: mkstr.1,v 1.10 2003/03/30 20:50:22 wiz Exp $
3 .\" Copyright (c) 1980, 1990, 1993
4 .\" The Regents of the University of California. All rights reserved.
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\" notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\" notice, this list of conditions and the following disclaimer in the
13 .\" documentation and/or other materials provided with the distribution.
14 .\" 3. Neither the name of the University nor the names of its contributors
15 .\" may be used to endorse or promote products derived from this software
16 .\" without specific prior written permission.
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" @(#)mkstr.1 8.1 (Berkeley) 6/6/93
37 .Nd create an error message file by massaging C source
45 creates files containing error messages extracted from C source,
46 and restructures the same C source, to use the created error message
50 was to reduce the size of large programs and
56 processes each of the specified
58 placing a restructured version of the input in a file whose name
59 consists of the specified
61 and the original name.
65 .Bd -literal -offset indent
66 mkstr pistrings xx *.c
69 This command causes all the error messages from the C source
70 files in the current directory to be placed in the file
72 and restructured copies of the sources to be placed in
73 files whose names are prefixed with
77 .Bl -tag -width indent
79 Error messages are placed at the end of the specified
80 message file for recompiling part of a large
87 finds error messages in the source by
88 searching for the string
91 Each time it occurs, the C string starting at the
94 in the message file followed by a null character and a new-line character;
95 The new source is restructured with
97 pointers into the error message file for retrieval.
98 .Bd -literal -offset indent
99 char efilname = "/usr/lib/pi_strings";
102 error(a1, a2, a3, a4)
107 efil = open(efilname, 0);
114 if (lseek(efil, a1, 0) \*[Lt] 0 || read(efil, buf, 256) \*[Le] 0)
116 printf(buf, a2, a3, a4);
128 was intended for the limited architecture of the PDP-11 family.
129 Very few programs actually use it.
130 It is not an efficient method, the error messages
131 should be stored in the program text.