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