#include "epoch.h" #include int main() { Month m = parseMonth("February"); assert(m == February); m = parseMonth("nov"); assert(m == November); m = parseMonth("MARCH"); assert(m == March); }