ESDM
Middleware for Earth System Data
base.h
1 /*
2  * =====================================================================================
3  *
4  * Filename: base.h
5  *
6  * Description:
7  *
8  * Version: 1.0
9  * Created: 07/25/2017 03:44:39 PM
10  * Revision: none
11  * Compiler: gcc
12  *
13  * Author: YOUR NAME (),
14  * Organization:
15  *
16  * =====================================================================================
17  */
18 
19 #ifndef base_INC
20 #define base_INC
21 
22 #include <stdlib.h>
23 #include <string.h>
24 
25 #include "debug.h"
26 #include "h5_sqlite_plugin.h"
27 
28 char *create_path(SQO_t *sqo);
29 void destroy_path(char *path);
30 
31 #endif /* ----- #ifndef base_INC ----- */
Definition: h5_sqlite_plugin.h:20