Initial import from FreeBSD RELENG_4:
[games.git] / games / trek / utility.c
1 /*
2  * Copyright (c) 1980, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #ifndef lint
35 #if 0
36 static char sccsid[] = "@(#)utility.c   8.1 (Berkeley) 5/31/93";
37 #endif
38 static const char rcsid[] =
39  "$FreeBSD: src/games/trek/utility.c,v 1.5 1999/11/30 03:49:55 billf Exp $";
40 #endif /* not lint */
41
42 /*
43 **  ASSORTED UTILITY ROUTINES
44 */
45
46 /*
47 **  BLOCK MOVE
48 **
49 **      Moves a block of storage of length `l' bytes from the data
50 **      area pointed to by `a' to the area pointed to by `b'.
51 **      Returns the address of the byte following the `b' field.
52 **      Overflow of `b' is not tested.
53 */
54
55 char *bmove(a, b, l)
56 char    *a, *b;
57 int     l;
58 {
59         int             n;
60         char            *p, *q;
61
62         p = a;
63         q = b;
64         n = l;
65         while (n--)
66                 *q++ = *p++;
67         return (q);
68 }
69
70
71 /*
72 **  STRING EQUALITY TEST
73 **      null-terminated strings `a' and `b' are tested for
74 **      absolute equality.
75 **      returns one if equal, zero otherwise.
76 */
77
78 sequal(a, b)
79 char    *a, *b;
80 {
81         char            *p, *q;
82
83         p = a;
84         q = b;
85         while (*p || *q)
86                 if (*p++ != *q++)
87                         return(0);
88         return(1);
89 }
90
91
92 /*
93 **  STRING CONCATENATE
94 **
95 **      The strings `s1' and `s2' are concatenated and stored into
96 **      `s3'.  It is ok for `s1' to equal `s3', but terrible things
97 **      will happen if `s2' equals `s3'.  The return value is is a
98 **      pointer to the end of `s3' field.
99 */
100
101 char *concat(s1, s2, s3)
102 char    *s1, *s2, *s3;
103 {
104         char            *p;
105         char            *q;
106
107         p = s3;
108         q = s1;
109         while (*q)
110                 *p++ = *q++;
111         q = s2;
112         while (*q)
113                 *p++ = *q++;
114         *p = 0;
115         return (p);
116 }
117
118
119 /*
120 **  FIND STRING LENGTH
121 **
122 **      The length of string `s' (excluding the null byte which
123 **              terminates the string) is returned.
124 */
125
126 length(s)
127 char    *s;
128 {
129         int     l;
130         char    *p;
131
132         l = 0;
133         p = s;
134         while (*p++)
135                 l++;
136         return(l);
137 }
138
139
140 /*
141 **  SYSTEM ERROR
142 */
143
144 syserr(p0, p1, p2, p3, p4, p5)
145 {
146         extern int      errno;
147
148         printf("\n\07TREK SYSERR: ");
149         printf(p0, p1, p2, p3, p4, p5);
150         printf("\n");
151         if (errno)
152                 printf("\tsystem error %d\n", errno);
153         exit(1);
154 }