Objective
Implement a function that reports whether a character is an ASCII letter, returning non-zero for letters and 0 for everything else.
Steps
$ isalpha('a')
1
$ isalpha('@')
0
$ isalpha('7')
0
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 reports whether a character is an ASCII letter, returning non-zero for letters and 0 for everything else.
Steps
$ isalpha('a')
1
$ isalpha('@')
0
$ isalpha('7')
0
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