#include <dirent.h>
#include <stdio.h>

int main(void) {
	const struct dirent de;
	printf("it's %zu!\n", sizeof de.d_name);
	return 0;
}
