[#absl-ascii_tolower] = xref:absl.adoc[absl]::ascii_tolower :relfileprefix: ../ :mrdocs: Returns an ASCII character, converting to lowercase if uppercase is passed. Note that character values > 127 are simply returned. == Synopsis Declared in `<absl/strings/ascii.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- char ascii_tolower(unsigned char c); ---- == Return Value The lowercase equivalent of `c`, or `c` if it has no lowercase form. == Parameters [cols="1,4"] |=== | Name| Description | *c* | The character to convert. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#