File:  [ELWIX - Embedded LightWeight unIX -] / libelwix / example / test_time.c
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Mon Apr 15 10:42:26 2024 UTC (2 weeks, 4 days ago) by misho
Branches: MAIN
CVS tags: elwix5_12, HEAD, ELWIX5_11
Version 5.11

#include <stdio.h>
#include <string.h>
#include <time.h>
#include <elwix.h>


int
main(int argc, char **argv)
{
	time_t tim;
	struct tm *tm;
	char str[BUFSIZ];

	if (argc < 2)
		return 1;

	memset(str, 0, sizeof str);

	tim = time_Parse(argv[1]);
	printf("time_t=%lu\n", tim);
	if (tim == (time_t) -1) {
		ELIBERR(elwix);
		return 2;
	}

	tm = localtime(&tim);
	strftime(str, sizeof str, "%Y-%m-%d %H:%M:%S", tm);
	printf("Time:: %s\n", str);

	return 0;
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>