You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
157 B
C

#include <fmt.h>
#include <assert.h>
#include <unistd.h>
int main() {
char buf[1024];
write(1,buf,fmt_iso8601(buf,0));
write(1,"\n",1);
return 0;
}