|
time 1.0
Time validation library
|
Represents a time of day using hour, minute, and second fields. More...
#include <time.h>
Data Fields | |
| unsigned char | hour |
| unsigned char | minute |
| unsigned char | second |
Represents a time of day using hour, minute, and second fields.
This structure provides a compact container for time-of-day values with 8-bit fields, suitable for embedded systems and RTC-related operations. It is intended for storing and passing formatted time data independent of any specific hardware peripheral.
| unsigned char hour |
Hour value (0–23 or device-specific range)
| unsigned char minute |
Minute value (0–59)
| unsigned char second |
Second value (0–59)