Correct mdoc(7) for basename(1) and passwd(1) manual pages.
[dragonfly.git] / usr.bin / make / nonints.h
1 /*-
2  * Copyright (c) 1988, 1989, 1990, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  * Copyright (c) 1989 by Berkeley Softworks
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * Adam de Boor.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *      from: @(#)nonints.h     8.3 (Berkeley) 3/19/94
39  * $FreeBSD: src/usr.bin/make/nonints.h,v 1.8 1999/08/28 01:03:35 peter Exp $
40  * $DragonFly: src/usr.bin/make/Attic/nonints.h,v 1.4 2003/11/18 23:49:54 dillon Exp $
41  */
42
43 /* arch.c */
44 ReturnStatus Arch_ParseArchive(char **, Lst, GNode *);
45 void Arch_Touch(GNode *);
46 void Arch_TouchLib(GNode *);
47 int Arch_MTime(GNode *);
48 int Arch_MemMTime(GNode *);
49 void Arch_FindLib(GNode *, Lst);
50 Boolean Arch_LibOODate(GNode *);
51 void Arch_Init(void);
52 void Arch_End(void);
53
54 /* compat.c */
55 void Compat_Run(Lst);
56
57 /* cond.c */
58 int Cond_Eval(char *);
59 void Cond_End(void);
60
61 /* for.c */
62 int For_Eval(char *);
63 void For_Run (void);
64
65 /* main.c */
66 void Main_ParseArgLine(char *);
67 int main(int, char **);
68 char *Cmd_Exec(char *, char **);
69 void Error(char *, ...);
70 void Fatal(char *, ...);
71 void Punt(char *, ...);
72 void DieHorribly(void);
73 int PrintAddr(ClientData, ClientData);
74 void Finish(int);
75 char *estrdup(const char *);
76 void *emalloc(size_t);
77 /* efree(x) works when x==NULL. STDC behavior, may need some different
78  * definition for cross-builds on deficient systems */
79 #define efree   free
80 void *erealloc(void *, size_t);
81 void enomem(void);
82 int eunlink(const char *);
83
84 /* parse.c */
85 void Parse_Error(int, char *, ...);
86 Boolean Parse_AnyExport(void);
87 Boolean Parse_IsVar(char *);
88 void Parse_DoVar(char *, GNode *);
89 void Parse_AddIncludeDir(char *);
90 void Parse_File(char *, FILE *);
91 void Parse_Init(void);
92 void Parse_End(void);
93 void Parse_FromString(char *);
94 Lst Parse_MainName(void);
95
96 /* str.c */
97 void str_init(void);
98 void str_end(void);
99 char *str_concat(char *, char *, int);
100 char **brk_string(char *, int *, Boolean);
101 char *Str_FindSubstring(char *, char *);
102 int Str_Match(char *, char *);
103 char *Str_SYSVMatch(char *, char *, int *len);
104 void Str_SYSVSubst(Buffer, char *, char *, int);
105
106 /* suff.c */
107 void Suff_ClearSuffixes(void);
108 Boolean Suff_IsTransform(char *);
109 GNode *Suff_AddTransform(char *);
110 int Suff_EndTransform(ClientData, ClientData);
111 void Suff_AddSuffix(char *);
112 Lst Suff_GetPath(char *);
113 void Suff_DoPaths(void);
114 void Suff_AddInclude(char *);
115 void Suff_AddLib(char *);
116 void Suff_FindDeps(GNode *);
117 void Suff_SetNull(char *);
118 void Suff_Init(void);
119 void Suff_End(void);
120 void Suff_PrintAll(void);
121
122 /* targ.c */
123 void Targ_Init(void);
124 void Targ_End(void);
125 GNode *Targ_NewGN(char *);
126 GNode *Targ_FindNode(char *, int);
127 Lst Targ_FindList(Lst, int);
128 Boolean Targ_Ignore(GNode *);
129 Boolean Targ_Silent(GNode *);
130 Boolean Targ_Precious(GNode *);
131 void Targ_SetMain(GNode *);
132 int Targ_PrintCmd(ClientData, ClientData);
133 char *Targ_FmtTime(time_t);
134 void Targ_PrintType(int);
135 void Targ_PrintGraph(int);
136
137 /* var.c */
138 void Var_Delete(char *, GNode *);
139 void Var_Set(char *, char *, GNode *);
140 void Var_SetEnv(char *, GNode *);
141 void Var_Append(char *, char *, GNode *);
142 Boolean Var_Exists(char *, GNode *);
143 char *Var_Value(char *, GNode *, char **);
144 char *Var_Parse(char *, GNode *, Boolean, int *, Boolean *);
145 char *Var_Subst(char *, char *, GNode *, Boolean);
146 char *Var_GetTail(char *);
147 char *Var_GetHead(char *);
148 void Var_Init(void);
149 void Var_End(void);
150 void Var_Dump(GNode *);