Objective
Implement a function that returns a pointer into the given string, placed on the first character that is neither a space nor a tab.
Steps
$ skip_spaces(" git status")
3 [git status]
$ skip_spaces("cargo build --release")
0 [cargo build --release]
$ skip_spaces("git commit -m wip")
0 [git commit -m wip]
$ skip_spaces(" ")
4 []
Expected files
Allowed functions
None. Write every helper yourself.

Objective
Implement a function that returns a pointer into the given string, placed on the first character that is neither a space nor a tab.
Steps
$ skip_spaces(" git status")
3 [git status]
$ skip_spaces("cargo build --release")
0 [cargo build --release]
$ skip_spaces("git commit -m wip")
0 [git commit -m wip]
$ skip_spaces(" ")
4 []
Expected files
Allowed functions
None. Write every helper yourself.

Tests
Run the tests to grade your code