AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
sfile.h
Go to the documentation of this file.
1#ifndef H_SFILE_
2#define H_SFILE_
3
4/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
5/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
10/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
11/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
12
13typedef struct {
14 char filename[MAXLINE]; /* path of the file */
15 FILE *fp; /* the file pointer */
16} SFILE;
17
18/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
19/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
20// Struct Methods
21/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
22
23void sfile_open(SFILE *file, char *filebase, char *ext1, char *ext2, char *suffix, char *mode, int stopOnNotFind);
24void sfile_init(SFILE *file);
25bool sfile_checkExists(const char *fname);
26
27/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
28/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
29
30#endif
bool sfile_checkExists(const char *fname)
Checks to see if AdH file exists.
Definition: sfile_checkExists.c:18
void sfile_open(SFILE *file, char *filebase, char *ext1, char *ext2, char *suffix, char *mode, int stopOnNotFind)
Initializes and opens an AdH SFILE.
Definition: sfile_open.c:24
void sfile_init(SFILE *file)
Initializes an AdH SFILE.
Definition: sfile_init.c:18
Definition: sfile.h:13