GRASS 8 Programmer's Manual 8.6.0dev(2026)-1d1e47ad9d
Loading...
Searching...
No Matches
ascii_chk.c
Go to the documentation of this file.
1/*!
2 * \file lib/gis/ascii_chk.c
3 *
4 * \brief GIS Library - Remove non-ascii characters
5 *
6 * (C) 2001-2014 by the GRASS Development Team
7 *
8 * This program is free software under the GNU General Public License
9 * (>=v2). Read the file COPYING that comes with GRASS for details.
10 *
11 * \author GRASS Development Team
12 *
13 * \date 1999-2014
14 */
15
16#include <grass/gis.h>
17
18#define TAB 011
19#define SPACE 040
20
21/**
22 * \brief Removes non-ascii characters from buffer.
23 *
24 * Updates <b>string</b> with non_ascii characters removed, except for
25 * tabs, which are turned into spaces.
26 *
27 * \param[in,out] string buffer to have non-ascii characters removed
28 * \return
29 */
30void G_ascii_check(char *string)
31{
32 char *ptr1, *ptr2;
33
34 ptr1 = string;
35 ptr2 = string;
36
37 while (*ptr1) {
38 if ((*ptr1 >= 040) && (*ptr1 <= 0176))
39 *ptr2++ = *ptr1;
40 else if (*ptr1 == TAB)
41 *ptr2++ = SPACE;
42 ptr1++;
43 }
44 *ptr2 = 0;
45}
void G_ascii_check(char *string)
Removes non-ascii characters from buffer.
Definition ascii_chk.c:30
#define SPACE
Definition ascii_chk.c:19
#define TAB
Definition ascii_chk.c:18