~grass/grass/releasebranch_7_0

« back to all changes in this revision

Viewing changes to raster/r.category/local_proto.h

  • Committer: glynn
  • Date: 2008-08-16 11:51:17 UTC
  • Revision ID: svn-v4:15284696-431f-4ddb-bdfa-cd5b030d7da7:grass/trunk:32813
Rename directories r.univar2 -> r.univar, r.grow2 -> r.grow, r.cats -> r.category
Remove r.proj

Show diffs side-by-side

added added

removed removed

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