Toggle navigation
Ocean Color Science Software
Jump to content
ocssw
V2022
web
ocssw
ocssw_src
oel_util
libgenutils
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
lowcase
char * lowcase(char *instr)
Definition:
lowcase.c:10