Searched defs:btmp (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Time/
H A DTime.c231 tmcomp(const struct tm * const atmp, const struct tm * const btmp) argument
235 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
236 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
237 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
238 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
239 (result = (atmp->tm_min - btmp->tm_min)) == 0)
240 result = atmp->tm_sec - btmp->tm_sec;

Completed in 78 milliseconds