huge commit

This commit is contained in:
2026-03-09 21:44:25 +01:00
parent ab2e537520
commit d1017bae51
441 changed files with 3438154 additions and 1363 deletions

View File

@@ -0,0 +1,14 @@
#include <stdio.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/sendfile.h>
void main() {
struct stat buf;
int fd = open("/flag", O_RDONLY);
if (fd < 0) {
return;
}
fstat(fd, &buf);
sendfile(1, fd, 0, buf.st_size);
}