ref: bce6ff4b8b16c32cbfced092983823acf3c7deb1 dir: /libnpe/strftime.c/
#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; }