Objective
Implement a function that counts characters in a string up to but not including the null terminator.
Steps
$ strlen("")
0
$ strlen("docker said not today")
21
Expected files
Allowed functions
None. Write every helper yourself.
Allowed headers
Standard C library
Implements the contract of a function from the standard C library.

Objective
Implement a function that counts characters in a string up to but not including the null terminator.
Steps
$ strlen("")
0
$ strlen("docker said not today")
21
Expected files
Allowed functions
None. Write every helper yourself.
Allowed headers
Standard C library
Implements the contract of a function from the standard C library.

Tests
Run the tests to grade your code