local_proto.h 445 B

12345678910111213141516171819202122
  1. #ifndef V_EXTERNAL_LOCAL_PROTO_H
  2. #define V_EXTERNAL_LOCAL_PROTO_H
  3. struct _options {
  4. struct Option *dsn, *output, *layer;
  5. };
  6. struct _flags {
  7. struct Flag *format, *layer, *tlist, *topo, *list;
  8. };
  9. /* args.c */
  10. void parse_args(int, char **,
  11. struct _options *, struct _flags*);
  12. /* list.c */
  13. void list_formats();
  14. int list_layers(FILE *, const char *, const char *, int, int);
  15. void get_table_name(const char *, char **, char **);
  16. #endif