PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ str_to_upper()

static void str_to_upper ( char *  string)
static

Definition at line 1624 of file dbfopen.c.

1625 {
1626  int len;
1627  short i = -1;
1628 
1629  len = strlen(string);
1630 
1631  while (++i < len)
1632  if (isalpha(string[i]) && islower(string[i]))
1633  string[i] = (char)toupper((int)string[i]);
1634 }

Referenced by DBFGetFieldIndex().

Here is the caller graph for this function: