ajout de replica

This commit is contained in:
H3XploR
2026-03-29 14:39:56 +02:00
parent 209c27cd97
commit d2c49cb340
6 changed files with 39 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#include <fcntl.h>
int main(int argc, char** argv){
if (argc != 2)
return 0;
int fd = open(argv[1], O_RDONLY);
if (fd == -1)
{
printf("fail opening file\n");
return 1;
}
return 0;
}