LIBRTC(3)
=========
Thomas "Cakeisalie5" Touhey
:Email: thomas@touhey.fr
:man source: librtc
:man manual: librtc manual

NAME
----
librtc - manipulating time. not space.

SYNOPSIS
--------
[source,c]
----
#include <librtc.h>

if (!rtc_init())
	exit(1);
rtc_date_t date = rtc_getdate();
date.day = 22;
rtc_adjustwday(&date);
rtc_setdate(date);
----

DESCRIPTION
-----------
librtc provides tools to work with the SH3 and SH4 RTCs.

SEE ALSO
--------
*rtc_init*(3),
*rtc_date_t*(3),
*rtc_getdate*(3),
*rtc_setdate*(3),
*rtc_timeofdate*(3),
*rtc_adjustwday*(3)
