asciiStrdown

Converts all upper case ASCII letters to lower case ASCII letters, with semantics that exactly match funcGLib.ascii_tolower.

string
asciiStrdown
(
string str
,
ptrdiff_t len
)

Parameters

str string

a string

len ptrdiff_t

length of str in bytes, or -1 if str is nul-terminated

Return Value

Type: string

a newly-allocated string, with all the upper case characters in str converted to lower case. (Note that this is unlike the old funcGLib.strdown, which modified the string in place.)