source: trunk/gsdl/lib/fileutil.h@ 120

Last change on this file since 120 was 100, checked in by rjmcnab, 25 years ago

Added standard header to source files.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 562 bytes
Line 
1/**********************************************************************
2 *
3 * fileutil.h -- a few useful file utilities
4 * Copyright (C) 1999 The New Zealand Digital Library Project
5 *
6 * PUT COPYRIGHT NOTICE HERE
7 *
8 * $Id: fileutil.h 100 1999-01-08 02:33:16Z rjmcnab $
9 *
10 *********************************************************************/
11
12
13#ifndef FILEUTIL_H
14#define FILEUTIL_H
15
16#include "text_t.h"
17
18
19// returns the proper concatenation of the two paths
20text_t filename_cat (text_t path1, text_t path2);
21
22// returns true if filename can be opened
23bool file_exists (const text_t &filename);
24
25
26#endif
Note: See TracBrowser for help on using the repository browser.