You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
242 B
C

#include <unistd.h>
#include <fcntl.h>
#include "io_internal.h"
int io_readfile(int64* d,const char* s) {
long fd=open(s,O_RDONLY);
if (fd != -1) {
if (io_fd(fd)) {
*d=fd;
return 1;
}
close(fd);
}
return 0;
}