shithub: npe

ref: 61a93fc303fe60819e7a0f9e264c0b592bcb8e93
dir: /libnpe/strftime.c/

View raw version
#include <time.h>

size_t
strftime(char *s, size_t max, const char *format, const struct tm *tm)
{
	/* FIXME */
	USED(max, format, tm);
	s[0] = 0;

	return 0;
}