1 #pragma once
2 
3 enum maybe_bool
4 {
5     MB_FALSE,
6     MB_MAYBE,
7     MB_TRUE,
8 };
9