timekeeper

My first (abandoned unfinished) web application for time tracking
git clone git://jacobedwards.org/timekeeper
Log | Files | Refs | README

util.h (124B)


      1 #define Len(X) (sizeof(X) / sizeof(X[0]))
      2 #define Max(A,B) ((A) > (B) ? (A) : (B))
      3 #define Min(A,B) ((A) < (B) ? (A) : (B))