@@ -135,58 +135,58 @@ extern struct tempfile *register_tempfile(const char *path);
135
135
*/
136
136
137
137
/* See "mks_tempfile functions" above. */
138
- extern struct tempfile * mks_tempfile_sm (const char * template ,
138
+ extern struct tempfile * mks_tempfile_sm (const char * filename_template ,
139
139
int suffixlen , int mode );
140
140
141
141
/* See "mks_tempfile functions" above. */
142
- static inline struct tempfile * mks_tempfile_s (const char * template ,
142
+ static inline struct tempfile * mks_tempfile_s (const char * filename_template ,
143
143
int suffixlen )
144
144
{
145
- return mks_tempfile_sm (template , suffixlen , 0600 );
145
+ return mks_tempfile_sm (filename_template , suffixlen , 0600 );
146
146
}
147
147
148
148
/* See "mks_tempfile functions" above. */
149
- static inline struct tempfile * mks_tempfile_m (const char * template , int mode )
149
+ static inline struct tempfile * mks_tempfile_m (const char * filename_template , int mode )
150
150
{
151
- return mks_tempfile_sm (template , 0 , mode );
151
+ return mks_tempfile_sm (filename_template , 0 , mode );
152
152
}
153
153
154
154
/* See "mks_tempfile functions" above. */
155
- static inline struct tempfile * mks_tempfile (const char * template )
155
+ static inline struct tempfile * mks_tempfile (const char * filename_template )
156
156
{
157
- return mks_tempfile_sm (template , 0 , 0600 );
157
+ return mks_tempfile_sm (filename_template , 0 , 0600 );
158
158
}
159
159
160
160
/* See "mks_tempfile functions" above. */
161
- extern struct tempfile * mks_tempfile_tsm (const char * template ,
161
+ extern struct tempfile * mks_tempfile_tsm (const char * filename_template ,
162
162
int suffixlen , int mode );
163
163
164
164
/* See "mks_tempfile functions" above. */
165
- static inline struct tempfile * mks_tempfile_ts (const char * template ,
165
+ static inline struct tempfile * mks_tempfile_ts (const char * filename_template ,
166
166
int suffixlen )
167
167
{
168
- return mks_tempfile_tsm (template , suffixlen , 0600 );
168
+ return mks_tempfile_tsm (filename_template , suffixlen , 0600 );
169
169
}
170
170
171
171
/* See "mks_tempfile functions" above. */
172
- static inline struct tempfile * mks_tempfile_tm (const char * template , int mode )
172
+ static inline struct tempfile * mks_tempfile_tm (const char * filename_template , int mode )
173
173
{
174
- return mks_tempfile_tsm (template , 0 , mode );
174
+ return mks_tempfile_tsm (filename_template , 0 , mode );
175
175
}
176
176
177
177
/* See "mks_tempfile functions" above. */
178
- static inline struct tempfile * mks_tempfile_t (const char * template )
178
+ static inline struct tempfile * mks_tempfile_t (const char * filename_template )
179
179
{
180
- return mks_tempfile_tsm (template , 0 , 0600 );
180
+ return mks_tempfile_tsm (filename_template , 0 , 0600 );
181
181
}
182
182
183
183
/* See "mks_tempfile functions" above. */
184
- extern struct tempfile * xmks_tempfile_m (const char * template , int mode );
184
+ extern struct tempfile * xmks_tempfile_m (const char * filename_template , int mode );
185
185
186
186
/* See "mks_tempfile functions" above. */
187
- static inline struct tempfile * xmks_tempfile (const char * template )
187
+ static inline struct tempfile * xmks_tempfile (const char * filename_template )
188
188
{
189
- return xmks_tempfile_m (template , 0600 );
189
+ return xmks_tempfile_m (filename_template , 0600 );
190
190
}
191
191
192
192
/*
0 commit comments