Skip to content

Instantly share code, notes, and snippets.

@domiyanyue
Last active May 3, 2020 21:27
Show Gist options
  • Save domiyanyue/b3bc2df0e7405cc91abbdc23c4b7f622 to your computer and use it in GitHub Desktop.
Save domiyanyue/b3bc2df0e7405cc91abbdc23c4b7f622 to your computer and use it in GitHub Desktop.
example header guard util
#include "time.h"
bool isDayTime(Time d);
#include "util.h"
bool isDayTime(Time d) {
return d.hour <= 18 && d.hour >= 7;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment