VIP: Volume Image Processing


file.h
Go to the documentation of this file.
1/****************************************************************************
2 * PROJECT : V.I.P. Library
3 * MODULE NAME : vip/fold_arg * TYPE : Header
4 * AUTHOR : MANGIN J-F * CREATION : 02/03/1999
5 * VERSION : 1.4 * REVISION :
6 * LANGUAGE : C * EXAMPLE :
7 * DEVICE : Linux
8 ****************************************************************************
9 *
10 * DESCRIPTION : recuperation du format de graphe relationnel
11 * attribue sur les plis corticaux de la these de JF Mangin
12 *
13 ****************************************************************************
14 *
15 *
16 ****************************************************************************
17 * REVISIONS : DATE | AUTHOR | DESCRIPTION
18 *--------------------|--------------|---------------------------------------
19 * / / | |
20 ****************************************************************************/
21
22#ifndef VIP_UTIL_FILE_H
23#define VIP_UTIL_FILE_H
24
25#ifdef __cplusplus
26extern "C"
27{
28#endif
29
30
31 int VipExists( const char* filename );
32 int VipIsDirectory( const char* dirname );
33 int VipIsSymlink( const char* path );
34 int VipMkdir( const char* dirname );
36 void VipBasename( const char* orig, char* dest );
37 void VipDirname( const char* orig, char* dest );
38 /* transform '\' into '/' */
39 void VipUnixFilename( const char* orig, char* dest );
40 const char *VipTmpDirectory();
41 void VipUnlink( const char* file );
42 void VipRename( const char* src, const char* dst );
43 /* Concatenates two files: like "cat toadd >> dst" */
44 void VipFileCat( const char* toadd, const char* dst );
45
46#ifdef __cplusplus
47}
48#endif
49
50#endif
void VipUnixFilename(const char *orig, char *dest)
void VipBasename(const char *orig, char *dest)
char VipFileSeparator()
int VipIsSymlink(const char *path)
int VipIsDirectory(const char *dirname)
int VipMkdir(const char *dirname)
const char * VipTmpDirectory()
void VipFileCat(const char *toadd, const char *dst)
void VipRename(const char *src, const char *dst)
void VipUnlink(const char *file)
int VipExists(const char *filename)
void VipDirname(const char *orig, char *dest)