OB.DAAC Logo
NASA Logo
Ocean Color Science Software

ocssw V2022
lowcase.c
Go to the documentation of this file.
1 /***********************************************************************
2  *
3  * This subroutine converts uppercase letters in INSTR to lowercase.
4  *
5  * B.D.Schieber, GSC, 3/94
6  *
7  ************************************************************************/
8 #include <ctype.h>
9 
10 char *lowcase(char *instr) {
11  char *strptr = instr;
12 
13  while (*instr != '\0') {
14  if (isupper(*instr)) *instr = tolower(*instr);
15  instr++;
16  }
17 
18  return (strptr);
19 }
20 
char * lowcase(char *instr)
Definition: lowcase.c:10