The original values of the members tm_wday and tm_yday of timeptr are ignored, and the ranges of values for the rest of its members are not restricted to their normal values (like tm_mday being between 1 and 31).
The object pointed by timeptr is modified, setting the tm_wday and tm_yday to their appropiate values, and modifying the other members as necessary to values within the normal range representing the specified time.
Parameters
- timeptr
- Pointer to a tm structure that contains a calendar time broken down into its components (see tm).
Return Value
A time_t value corresponding to the calendar time passed as argument.On error, a -1 value is returned.
Example
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
|
Output:
Enter year: 2000 Enter month: 5 Enter day: 20 That day is a Saturday. |
See also.
| asctime | Convert tm structure to string (function) |
| gmtime | Convert time_t to tm as UTC time (function) |
| localtime | Convert time_t to tm as local time (function) |
| time | Get current time (function) |
