Objective
Implement four bit flag macros in flags.h, then use them in update_flag.
Steps
$ SET_FLAG(4u, 0)
5
$ CLEAR_FLAG(7u, 1)
5
Expected files
Allowed functions
None. Write every helper yourself.

Objective
Implement four bit flag macros in flags.h, then use them in update_flag.
Steps
$ SET_FLAG(4u, 0)
5
$ CLEAR_FLAG(7u, 1)
5
Expected files
Allowed functions
None. Write every helper yourself.

Tests
Run the tests to grade your code