char* Ns_Asctime (
const struct tm* tmPtr
);
This function is a wrapper around asctime_r(3C). This converts a tm
struture to a 26-character string. The value returned by this function will be changed by additional calls to it within the same thread, so make a copy of the value if needed.