nl_to_spaces.c

Go to the documentation of this file.
00001 #include "gis.h"
00002 
00003 void G_newlines_to_spaces( char *s)
00004 {
00005     while (*s)
00006     {
00007         if (*s == '\n') *s = ' ';
00008         s++;
00009     }
00010 }

Generated on Mon Jan 1 19:49:25 2007 for GRASS by  doxygen 1.5.1