19 lines
262 B
C
19 lines
262 B
C
/*
|
|
* clock.h
|
|
*
|
|
* Created on: Mar 26, 2026
|
|
* Author: ewars
|
|
*/
|
|
|
|
#ifndef INC_CLOCK_H_
|
|
#define INC_CLOCK_H_
|
|
|
|
#include <stdint-gcc.h>
|
|
|
|
uint8_t clock_convert_hours(uint8_t hours);
|
|
uint8_t clock_convert_min_sec(uint8_t min_sec);
|
|
|
|
|
|
|
|
#endif /* INC_CLOCK_H_ */
|