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