tolower_m()

Convert the specified character to lowercase.

Synopsis:

#include <asr/types.h>
 
int tolower_m(int c)

Arguments:

c

The character to convert.

Library:

libasr

Description:

The tolower_m() function converts the specified ASCII character to lowercase. If the character isn't in the range of ASCII uppercase characters, it's returned unchanged.

Returns:

The lowercase character on success; the unchanged character on error.