lnvis

nanovg lightning network visualizer
git clone git://jb55.com/lnvis
Log | Files | Refs | README | LICENSE

options.h (242B)


      1 
      2 #ifndef LNVIS_OPTIONS_H
      3 #define LNVIS_OPTIONS_H
      4 
      5 
      6 struct options {
      7 	const char *channels;
      8 	const char *nodes;
      9 	const char *filter;
     10 };
     11 
     12 
     13 void parse_options(int argc, const char *argv[], struct options *options);
     14 
     15 #endif /* LNVIS_OPTIONS_H */