Objective
Build a tiny getopt-style flag parser that walks argv left to right and announces each recognised short option as soon as it appears.
Steps
$ ./parse_flags -l
Option l
$ ./parse_flags -p shipit -l
Option p with arg shipit Option l
$ ./parse_flags -l deploy.log -c
Option l
Expected files
Allowed functions

Objective
Build a tiny getopt-style flag parser that walks argv left to right and announces each recognised short option as soon as it appears.
Steps
$ ./parse_flags -l
Option l
$ ./parse_flags -p shipit -l
Option p with arg shipit Option l
$ ./parse_flags -l deploy.log -c
Option l
Expected files
Allowed functions

Tests
Run the tests to grade your code