local_proto.h 817 B

123456789101112131415161718192021222324252627282930
  1. /****************************************************************************
  2. *
  3. * MODULE: r.clump
  4. *
  5. * AUTHOR(S): Michael Shapiro - CERL
  6. *
  7. * PURPOSE: Recategorizes data in a raster map layer by grouping cells
  8. * that form physically discrete areas into unique categories.
  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. /* clump.c */
  20. CELL clump(int, int);
  21. int print_time(long *);
  22. /* main.c */
  23. int main(int, char *[]);
  24. #endif /* __LOCAL_PROTO_H__ */