2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00
Files
build/jam_src/filesys.h
Rene Rivera 5a441aa093 Bump version to 3.1.10 for release.
Update copyrights to new Boost License.


[SVN r22987]
2004-06-01 05:42:36 +00:00

32 lines
805 B
C

/*
* Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc.
*
* This file is part of Jam - see jam.c for Copyright information.
*/
/* This file is ALSO:
* Copyright 2001-2004 David Abrahams.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
*/
/*
* filesys.h - OS specific file routines
*/
#ifndef FILESYS_DWA20011025_H
# define FILESYS_DWA20011025_H
# include "pathsys.h"
typedef void (*scanback)( void *closure, char *file, int found, time_t t );
void file_dirscan( char *dir, scanback func, void *closure );
void file_archscan( char *arch, scanback func, void *closure );
int file_time( char *filename, time_t *time );
void file_build1(PATHNAME *f, string* file) ;
#endif