write_file

This commit is contained in:
IgorCielniak
2025-12-18 11:32:35 +01:00
parent 6efd7c4e19
commit 50451840b7
32 changed files with 3064 additions and 24 deletions

8
stat_offset.c Normal file
View File

@@ -0,0 +1,8 @@
#include <stdio.h>
#include <sys/stat.h>
#include <stddef.h>
int main() {
printf("st_size offset: %zu\n", offsetof(struct stat, st_size));
return 0;
}