root/trunk/src/rrdwrap.h @ 32

Revision 17, 0.6 KB (checked in by andreu, 17 years ago)

*** empty log message ***

  • Property svn:eol-style set to native
Line 
1/*      rrdwrap.h - wrapper functions for the rrd tool */
2
3/*      Contributed by Antony Clothier, December 2001 */
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> /* for isgraph */
17
18#include "rrd.h"
19
20int wrap_rrd_create(char *argstr);
21
22int wrap_rrd_update(char *argstr);
23
24int wrap_rrd_graph(char *argstr);
25
26int wrap_rrd_restore(char *argstr);
27
28int wrap_rrd_dump(char *argstr);
29
30int wrap_rrd_tune(char *argstr);
31
32char** string_to_argv(char *argstring, int *argc);
33
34void Free_argv(char** argv);
35
36#endif
Note: See TracBrowser for help on using the browser.