OpenWrt_Luci_Lua/1_6.h12_dev/libmpdclient/test/t_iso8601.c

20 lines
354 B
C
Raw Permalink Normal View History

2016-02-16 07:48:49 +00:00
#include "iso8601.h"
#include <mpd/compiler.h>
#include <assert.h>
#include <time.h>
int main(mpd_unused int argc, mpd_unused char **argv)
{
char buffer[64];
time_t t, now;
bool success;
now = time(NULL);
success = iso8601_datetime_format(buffer, sizeof(buffer), now);
assert(success);
t = iso8601_datetime_parse(buffer);
assert(t == now);
}