[GRASS-SVN] r52464 - grass/trunk/lib/gis

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Jul 27 07:24:20 PDT 2012


Author: martinl
Date: 2012-07-27 07:24:19 -0700 (Fri, 27 Jul 2012)
New Revision: 52464

Modified:
   grass/trunk/lib/gis/parser_html.c
   grass/trunk/lib/gis/parser_rest.c
Log:
libgis: add doxygen header (parser_rest|html.c)


Modified: grass/trunk/lib/gis/parser_html.c
===================================================================
--- grass/trunk/lib/gis/parser_html.c	2012-07-27 09:44:12 UTC (rev 52463)
+++ grass/trunk/lib/gis/parser_html.c	2012-07-27 14:24:19 UTC (rev 52464)
@@ -1,3 +1,16 @@
+/*!
+  \file lib/gis/parser_html.c
+  
+  \brief GIS Library - Argument parsing functions (HTML output)
+  
+  (C) 2001-2009, 2011-2012 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.
+  
+  \author Original author CERL
+*/
+
 #include <stdio.h>
 
 #include <grass/gis.h>

Modified: grass/trunk/lib/gis/parser_rest.c
===================================================================
--- grass/trunk/lib/gis/parser_rest.c	2012-07-27 09:44:12 UTC (rev 52463)
+++ grass/trunk/lib/gis/parser_rest.c	2012-07-27 14:24:19 UTC (rev 52464)
@@ -1,10 +1,22 @@
+/*!
+  \file lib/gis/parser_rest.c
+  
+  \brief GIS Library - Argument parsing functions (REST output)
+  
+  (C) 2012 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.
+  
+  \author Luca Delucchi
+*/
 #include <stdio.h>
+#include <string.h>
 
 #include <grass/gis.h>
 #include <grass/glocale.h>
 
 #include "parser_local_proto.h"
-#include "string.h"
 
 /*!
 static void print_escaped_for_html(FILE * f, const char *str);
@@ -20,7 +32,7 @@
     struct Flag *flag;
     const char *type;
     int new_prompt = 0;
-    int s;
+    unsigned int s;
 
     new_prompt = G__uses_new_gisprompt();
 



More information about the grass-commit mailing list