local_proto.h 498 B

1234567891011121314151617181920212223
  1. #include <grass/gis.h>
  2. #include <grass/vector.h>
  3. struct opts {
  4. struct Flag *reverse, *table;
  5. struct Option *input, *output;
  6. struct Option *type;
  7. struct Option *height;
  8. struct Option *field, *column;
  9. };
  10. /* args.c */
  11. void parse_args(struct opts *);
  12. /* trans2.c */
  13. void trans2d(struct Map_info *, struct Map_info *, int,
  14. double, const char *, const char *);
  15. /* trans3.c */
  16. void trans3d(struct Map_info *, struct Map_info *, int,
  17. const char *, const char *);