help on time library .unkown commands

#define SOMETEXT SOMETHINGELSE

will cause in the compiler to replace SOMETEXT with SOMETHINGELSE whenever it comes across it in your code. This allows you to use meaningful names and also for you to be able to change the meaning of SOMETHING in one place rather than searching through you code.

Google #define