15 lines
284 B
C
15 lines
284 B
C
|
#define UIRC_HELPERS
|
||
|
#include "../include/uirc.h"
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
char buffer[26];
|
||
|
time_t res = 1130620230;
|
||
|
if (Assm_tag_timestamp(buffer, sizeof(buffer), res))
|
||
|
printf("Time is: %s\n", buffer);
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|