ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Convert-UUlib/uulib/uuint.h
(Generate patch)

Comparing Convert-UUlib/uulib/uuint.h (file contents):
Revision 1.12 by root, Sun Dec 13 02:55:12 2020 UTC vs.
Revision 1.13 by root, Sat Sep 24 06:02:04 2022 UTC

20/* 20/*
21 * This file describes the internal structures, variables and definitions 21 * This file describes the internal structures, variables and definitions
22 * of UUDeview. It should not be included from other packages. Subject to 22 * of UUDeview. It should not be included from other packages. Subject to
23 * change without notice. Do not depend on anything here. 23 * change without notice. Do not depend on anything here.
24 * 24 *
25 * $Id: uuint.h,v 1.12 2020/12/13 02:55:12 root Exp $ 25 * $Id: uuint.h,v 1.13 2022/09/24 06:02:04 root Exp $
26 */ 26 */
27 27
28/* 28/*
29 * Busy Polls will be made after processing ... lines 29 * Busy Polls will be made after processing ... lines
30 */ 30 */
273/* 273/*
274 * Functions from uulib.c that aren't defined in <uudeview.h> 274 * Functions from uulib.c that aren't defined in <uudeview.h>
275 * Be careful about the definition with variable arguments. 275 * Be careful about the definition with variable arguments.
276 */ 276 */
277 277
278#if defined(STDC_HEADERS) || defined(HAVE_STDARG_H)
279int UUMessage (char *, int, int, char *, ...); 278int UUMessage_ (char *, int, int, char *, ...);
280#else
281int UUMessage ();
282#endif
283int UUBusyPoll (void); 279int UUBusyPoll (void);
284 280
281#define UUMessage(file, line, level, ...) UUMessage_ (__FILE__, __LINE__, level, __VA_ARGS__)
282
285/* 283/*
286 * Functions from uucheck.c 284 * Functions from uucheck.c
287 */ 285 */
288 286
289uufile * UUPreProcessPart (fileread *, int *); 287uufile * UUPreProcessPart (fileread *, int *);
290int UUInsertPartToList (uufile *); 288int UUInsertPartToList (uufile *);
291 289
292/* 290/*
293 * Functions from uuutil.c 291 * Functions from uuutil.c
294 */ 292 */
295 293
296void UUkillfread (fileread *); 294void UUkillfread (fileread *);
297void UUkillfile (uufile *); 295void UUkillfile (uufile *);
298void UUkilllist (uulist *); 296void UUkilllist (uulist *);
299void UUkillheaders (headers *); 297void UUkillheaders (headers *);
300 298
301fileread * ScanPart (FILE *, char *, int *); 299fileread * ScanPart (FILE *, char *, int *);
302 300
303int UUbhdecomp (char *, char *, 301int UUbhdecomp (char *, char *,
304 char *, int *, 302 char *, int *,
305 size_t, size_t, 303 size_t, size_t,
306 size_t *); 304 size_t *);
310 * Functions from uunconc.c 308 * Functions from uunconc.c
311 */ 309 */
312 310
313int UURepairData (FILE *, char *, int, int *); 311int UURepairData (FILE *, char *, int, int *);
314 312
315void UUInitConc _ANSI_ARGS_((void)); 313void UUInitConc _ANSI_ARGS_((void));
316int UUValidData _ANSI_ARGS_((char *, int, int *)); 314int UUValidData _ANSI_ARGS_((char *, int, int *));
317size_t UUDecodeLine _ANSI_ARGS_((char *, char *, int)); 315size_t UUDecodeLine _ANSI_ARGS_((char *, char *, int));
318int UUDecodeField _ANSI_ARGS_((char *, char *, int)); 316int UUDecodeField _ANSI_ARGS_((char *, char *, int));
319int UUDecodePart _ANSI_ARGS_((FILE *, FILE *, int *, 317int UUDecodePart _ANSI_ARGS_((FILE *, FILE *, int *,
320 long, int, int, char *)); 318 long, int, int, char *));
321int UUDecode _ANSI_ARGS_((uulist *)); 319int UUDecode _ANSI_ARGS_((uulist *));
322 320
323/* 321/*
324 * Message retrieval from uustring.c 322 * Message retrieval from uustring.c
325 */ 323 */
326 324

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines