• Main Page
  • Related Pages
  • Data Structures
  • Files
  • File List
  • Globals

nl_to_spaces.c

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

Generated on Wed Oct 13 2010 12:09:29 for GRASS Programmer's Manual by  doxygen 1.7.1