arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
197 Bytes
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
int main() {
int fd = open("some.file", O_RDWR);
char buffer[100];
read(fd, buffer, 1);
write(fd, "some data", 9);
close(fd);
}