Objective
Implement a function that converts a single uppercase letter to its lowercase form and returns every other value untouched.
Steps
$ tolower('A')
a
$ tolower('z')
z
$ tolower('7')
7
Expected files
Allowed functions
None. Write every helper yourself.
Standard C library
Implements the contract of a function from the standard C library.

Objective
Implement a function that converts a single uppercase letter to its lowercase form and returns every other value untouched.
Steps
$ tolower('A')
a
$ tolower('z')
z
$ tolower('7')
7
Expected files
Allowed functions
None. Write every helper yourself.
Standard C library
Implements the contract of a function from the standard C library.

Tests
Run the tests to grade your code