GRASS GIS 7 Programmer's Manual  7.9.dev(2021)-e5379bbd7
mapcase.c File Reference
#include <grass/gis.h>
Include dependency graph for mapcase.c:

Go to the source code of this file.

Functions

char * G_tolcase (char *string)
 convert string to lower case More...
 
char * G_toucase (char *string)
 convert string to upper case More...
 

Function Documentation

◆ G_tolcase()

char* G_tolcase ( char *  string)

convert string to lower case

Upper case letters in the string s are converted to their lower case equivalent. Returns s.

Parameters
string
Returns
char

Definition at line 19 of file mapcase.c.

◆ G_toucase()

char* G_toucase ( char *  string)

convert string to upper case

Lower case letters in the string s are converted to their upper case equivalent. Returns s.

Parameters
string
Returns
char

Definition at line 49 of file mapcase.c.