> I have a user entered time/date in the format: > yymmddhhmmss > I need to convert this into seconds since the epoch and If you have ANSI C libraries, convert the yymmddhhmmss into a tm struct and then use mktime() to convert that into seconds since the epoch. Wayne