Revision 17, 0.6 KB
(checked in by andreu, 17 years ago)
|
*** empty log message ***
|
-
Property svn:eol-style set to
native
|
Line | |
---|
1 | |
---|
2 | |
---|
3 | |
---|
4 | |
---|
5 | |
---|
6 | #ifndef RRD_WRAP_H |
---|
7 | |
---|
8 | #define RRD_WRAP_H |
---|
9 | |
---|
10 | #include <unistd.h> |
---|
11 | #include <stdio.h> |
---|
12 | #include <string.h> |
---|
13 | #include <stdlib.h> |
---|
14 | #include <syslog.h> |
---|
15 | #include <errno.h> |
---|
16 | #include <ctype.h> |
---|
17 | |
---|
18 | #include "rrd.h" |
---|
19 | |
---|
20 | int wrap_rrd_create(char *argstr); |
---|
21 | |
---|
22 | int wrap_rrd_update(char *argstr); |
---|
23 | |
---|
24 | int wrap_rrd_graph(char *argstr); |
---|
25 | |
---|
26 | int wrap_rrd_restore(char *argstr); |
---|
27 | |
---|
28 | int wrap_rrd_dump(char *argstr); |
---|
29 | |
---|
30 | int wrap_rrd_tune(char *argstr); |
---|
31 | |
---|
32 | char** string_to_argv(char *argstring, int *argc); |
---|
33 | |
---|
34 | void Free_argv(char** argv); |
---|
35 | |
---|
36 | #endif |
---|