Changeset 24 for branches/FREEBSD/src/kmk/dir.h
- Timestamp:
- Nov 26, 2002, 10:24:54 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/FREEBSD/src/kmk/dir.h
r10 r24 1 1 /* 2 * Copyright (c) 1988, 1989, 1990, 1993 3 * The Regents of the University of California. All rights reserved. 2 * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. 4 3 * Copyright (c) 1988, 1989 by Adam de Boor 5 4 * Copyright (c) 1989 by Berkeley Softworks … … 37 36 * SUCH DAMAGE. 38 37 * 39 * @(#)dir.h 8.2 (Berkeley) 4/28/9540 * $FreeBSD: src/usr.bin/make/dir.h,v 1. 10 2002/04/13 10:57:56 obrienExp $38 * from: @(#)dir.h 8.1 (Berkeley) 6/6/93 39 * $FreeBSD: src/usr.bin/make/dir.h,v 1.7 1999/08/28 01:03:29 peter Exp $ 41 40 */ 42 41 … … 55 54 } Path; 56 55 57 void Dir_Init (void);58 void Dir_End (void);59 Boolean Dir_HasWildcards (char *);60 void Dir_Expand (char *, Lst, Lst);61 char *Dir_FindFile (char *, Lst);62 int Dir_MTime (GNode *);63 void Dir_AddDir (Lst, char *);64 char *Dir_MakeFlags (char *, Lst);65 void Dir_ClearPath (Lst);66 void Dir_Concat (Lst, Lst);67 void Dir_PrintDirectories (void);68 void Dir_PrintPath (Lst);69 void Dir_Destroy (void *);70 void * Dir_CopyDir(void *);56 void Dir_Init __P((void)); 57 void Dir_End __P((void)); 58 Boolean Dir_HasWildcards __P((char *)); 59 void Dir_Expand __P((char *, Lst, Lst)); 60 char *Dir_FindFile __P((char *, Lst)); 61 int Dir_MTime __P((GNode *)); 62 void Dir_AddDir __P((Lst, char *)); 63 char *Dir_MakeFlags __P((char *, Lst)); 64 void Dir_ClearPath __P((Lst)); 65 void Dir_Concat __P((Lst, Lst)); 66 void Dir_PrintDirectories __P((void)); 67 void Dir_PrintPath __P((Lst)); 68 void Dir_Destroy __P((ClientData)); 69 ClientData Dir_CopyDir __P((ClientData)); 71 70 72 71 #endif /* _DIR */
Note:
See TracChangeset
for help on using the changeset viewer.