ref: c301ec771ed9f63937062178fb1d78d8773c8701 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; }