Objective
Implement a function that scans a string and returns the first position whose character appears in a second string.
Steps
$ find_any_char("compile passed", "xyzp")
pointer to `p`
$ find_any_char("branch", "aeiou")
pointer to `a`
$ find_any_char("lint", "xyz")
NULL
Expected files
Allowed functions
None. Write every helper yourself.
Allowed headers

Objective
Implement a function that scans a string and returns the first position whose character appears in a second string.
Steps
$ find_any_char("compile passed", "xyzp")
pointer to `p`
$ find_any_char("branch", "aeiou")
pointer to `a`
$ find_any_char("lint", "xyz")
NULL
Expected files
Allowed functions
None. Write every helper yourself.
Allowed headers

Tests
Run the tests to grade your code