|
GRASS 8 Programmer's Manual 8.6.0dev(2026)-ddeab64dbf
|
DBMI Library (base) - case string conversion. More...
#include <grass/dbmi.h>
Go to the source code of this file.
Functions | |
| void | db_char_to_lowercase (char *s) |
| Convert character to lowercase. | |
| void | db_char_to_uppercase (char *s) |
| Convert character to uppercase. | |
| void | db_Cstring_to_lowercase (char *s) |
| Convert string to lowercase. | |
| void | db_Cstring_to_uppercase (char *s) |
| Convert string to lowercase. | |
| int | db_nocase_compare (const char *a, const char *b) |
| Compare strings case-insensitive. | |
DBMI Library (base) - case string conversion.
(C) 1999-2009, 2011 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.
Definition in file case.c.
Convert character to lowercase.
| s | character to be modified |
Definition at line 22 of file case.c.
Referenced by db_Cstring_to_lowercase().
Convert character to uppercase.
| s | character to be modified |
Definition at line 33 of file case.c.
Referenced by db_Cstring_to_uppercase(), and db_nocase_compare().
Convert string to lowercase.
| s | string buffer to be modified |
Definition at line 44 of file case.c.
References db_char_to_lowercase().
Convert string to lowercase.
| s | string buffer to be modified |
Definition at line 55 of file case.c.
References db_char_to_uppercase().
Compare strings case-insensitive.
| a,b | string buffers to be compared |
Definition at line 69 of file case.c.
References b, db_char_to_uppercase(), and t.
Referenced by db_convert_Cstring_to_value_datetime().