123456789101112131415161718192021222324252627282930 |
- /****************************************************************************
- *
- * MODULE: r.clump
- *
- * AUTHOR(S): Michael Shapiro - CERL
- *
- * PURPOSE: Recategorizes data in a raster map layer by grouping cells
- * that form physically discrete areas into unique categories.
- *
- * COPYRIGHT: (C) 2006 by the GRASS Development Team
- *
- * This program is free software under the GNU General Public
- * License (>=v2). Read the file COPYING that comes with GRASS
- * for details.
- *
- ***************************************************************************/
- #ifndef __LOCAL_PROTO_H__
- #define __LOCAL_PROTO_H__
- /* clump.c */
- CELL clump(int, int);
- int print_time(long *);
- /* main.c */
- int main(int, char *[]);
- #endif /* __LOCAL_PROTO_H__ */
|