]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/make/nonints.h
Remove efree(), it isn't used consistently enough to even pretend that it
[FreeBSD/FreeBSD.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  *      @(#)nonints.h   8.4 (Berkeley) 4/28/95
39  * $FreeBSD$
40  */
41
42 /* arch.c */
43 ReturnStatus Arch_ParseArchive(char **, Lst, GNode *);
44 void Arch_Touch(GNode *);
45 void Arch_TouchLib(GNode *);
46 int Arch_MTime(GNode *);
47 int Arch_MemMTime(GNode *);
48 void Arch_FindLib(GNode *, Lst);
49 Boolean Arch_LibOODate(GNode *);
50 void Arch_Init(void);
51 void Arch_End(void);
52
53 /* compat.c */
54 void Compat_Run(Lst);
55
56 /* cond.c */
57 int Cond_Eval(char *);
58 void Cond_End(void);
59
60 /* for.c */
61 int For_Eval(char *);
62 void For_Run(void);
63
64 /* main.c */
65 void Main_ParseArgLine(char *);
66 char *Cmd_Exec(char *, char **);
67 void Debug(const char *, ...);
68 void Error(const char *, ...);
69 void Fatal(const char *, ...);
70 void Punt(const char *, ...);
71 void DieHorribly(void);
72 int PrintAddr(void *, void *);
73 void Finish(int);
74 char *estrdup(const char *);
75 void *emalloc(size_t);
76 void *erealloc(void *, size_t);
77 void enomem(void);
78 int eunlink(const char *);
79
80 /* parse.c */
81 void Parse_Error(int, const char *, ...);
82 Boolean Parse_AnyExport(void);
83 Boolean Parse_IsVar(char *);
84 void Parse_DoVar(char *, GNode *);
85 void Parse_AddIncludeDir(char *);
86 void Parse_File(char *, FILE *);
87 void Parse_Init(void);
88 void Parse_End(void);
89 void Parse_FromString(char *);
90 Lst Parse_MainName(void);
91
92 /* str.c */
93 void str_init(void);
94 void str_end(void);
95 char *str_concat(char *, char *, int);
96 char **brk_string(char *, int *, Boolean);
97 char *Str_FindSubstring(char *, char *);
98 int Str_Match(char *, char *);
99 char *Str_SYSVMatch(char *, char *, int *len);
100 void Str_SYSVSubst(Buffer, char *, char *, int);
101
102 /* suff.c */
103 void Suff_ClearSuffixes(void);
104 Boolean Suff_IsTransform(char *);
105 GNode *Suff_AddTransform(char *);
106 int Suff_EndTransform(void *, void *);
107 void Suff_AddSuffix(char *);
108 Lst Suff_GetPath(char *);
109 void Suff_DoPaths(void);
110 void Suff_AddInclude(char *);
111 void Suff_AddLib(char *);
112 void Suff_FindDeps(GNode *);
113 void Suff_SetNull(char *);
114 void Suff_Init(void);
115 void Suff_End(void);
116 void Suff_PrintAll(void);
117
118 /* targ.c */
119 void Targ_Init(void);
120 void Targ_End(void);
121 GNode *Targ_NewGN(char *);
122 GNode *Targ_FindNode(char *, int);
123 Lst Targ_FindList(Lst, int);
124 Boolean Targ_Ignore(GNode *);
125 Boolean Targ_Silent(GNode *);
126 Boolean Targ_Precious(GNode *);
127 void Targ_SetMain(GNode *);
128 int Targ_PrintCmd(void *, void *);
129 char *Targ_FmtTime(time_t);
130 void Targ_PrintType(int);
131 void Targ_PrintGraph(int);
132
133 /* var.c */
134 void Var_Delete(char *, GNode *);
135 void Var_Set(char *, char *, GNode *);
136 void Var_Append(char *, char *, GNode *);
137 Boolean Var_Exists(char *, GNode *);
138 char *Var_Value(char *, GNode *, char **);
139 char *Var_Parse(char *, GNode *, Boolean, int *, Boolean *);
140 char *Var_Subst(char *, char *, GNode *, Boolean);
141 char *Var_GetTail(char *);
142 char *Var_GetHead(char *);
143 void Var_Init(void);
144 void Var_End(void);
145 void Var_Dump(GNode *);