local_proto.h 907 B

123456789101112131415161718192021222324252627282930313233
  1. /****************************************************************************
  2. *
  3. * MODULE: r.cats
  4. *
  5. * AUTHOR(S): Michael Shapiro - CERL
  6. *
  7. * PURPOSE: Prints category values and labels associated with
  8. * user-specified raster map layers.
  9. *
  10. * COPYRIGHT: (C) 2006 by the GRASS Development Team
  11. *
  12. * This program is free software under the GNU General Public
  13. * License (>=v2). Read the file COPYING that comes with GRASS
  14. * for details.
  15. *
  16. ***************************************************************************/
  17. #ifndef __LOCAL_PROTO_H__
  18. #define __LOCAL_PROTO_H__
  19. /* cats.c */
  20. int get_cats(const char *, const char *);
  21. int next_cat(long *);
  22. /* main.c */
  23. int print_label(long);
  24. int print_d_label(double);
  25. int scan_cats(const char *, long *, long *);
  26. int scan_vals(const char *, double *);
  27. #endif /* __LOCAL_PROTO_H__ */