Line | |
---|
1 | /* |
---|
2 | * Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc. |
---|
3 | * |
---|
4 | * This file is part of Jam - see jam.c for Copyright information. |
---|
5 | */ |
---|
6 | |
---|
7 | /* This file is ALSO: |
---|
8 | * Copyright 2001-2004 David Abrahams. |
---|
9 | * Distributed under the Boost Software License, Version 1.0. |
---|
10 | * (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) |
---|
11 | */ |
---|
12 | |
---|
13 | /* |
---|
14 | * filesys.h - OS specific file routines |
---|
15 | */ |
---|
16 | |
---|
17 | #ifndef FILESYS_DWA20011025_H |
---|
18 | # define FILESYS_DWA20011025_H |
---|
19 | |
---|
20 | # include "pathsys.h" |
---|
21 | |
---|
22 | typedef void (*scanback)( void *closure, char *file, int found, time_t t ); |
---|
23 | |
---|
24 | void file_dirscan( char *dir, scanback func, void *closure ); |
---|
25 | void file_archscan( char *arch, scanback func, void *closure ); |
---|
26 | |
---|
27 | int file_time( char *filename, time_t *time ); |
---|
28 | |
---|
29 | void file_build1(PATHNAME *f, string* file) ; |
---|
30 | int file_is_file(char* filename); |
---|
31 | |
---|
32 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.