4.271.4 UNIX_OFFSET
Difference between the Y2K and the UNIX epochs, in seconds. To convert a Y2K timestamp to UNIX... 
                long unix;
        time_t y2k;
        y2k = time(NULL);
        unix = y2k + UNIX_OFFSET;
 