"Fossies" - the Fresh Open Source Software Archive 
Member "vnstat-2.9/src/vnstati.h" (26 Dec 2021, 587 Bytes) of package /linux/misc/vnstat-2.9.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "vnstati.h" see the
Fossies "Dox" file reference documentation and the latest
Fossies "Diffs" side-by-side code changes report:
2.8_vs_2.9.
1 #ifndef VNSTATI_H
2 #define VNSTATI_H
3
4 typedef struct {
5 int cache, help;
6 int32_t limit;
7 char interface[32], filename[512], cfgfile[512];
8 FILE *pngout;
9 } IPARAMS;
10
11 void initiparams(IPARAMS *p);
12 void showihelp(IPARAMS *p);
13 void parseargs(IPARAMS *p, IMAGECONTENT *ic, int argc, char **argv);
14 void validateinput(IPARAMS *p);
15 void handlecaching(IPARAMS *p, IMAGECONTENT *ic);
16 void handledatabase(IPARAMS *p, IMAGECONTENT *ic);
17 void validateoutput(IPARAMS *p);
18 void writeoutput(IPARAMS *p, IMAGECONTENT *ic);
19 #if HAVE_DECL_GDIMAGEFILE
20 void showsupportedfileextensions(void);
21 #endif
22
23 #endif