16 lines
265 B
C
16 lines
265 B
C
![]() |
#include <unistd.h>
|
||
|
#include <fcntl.h>
|
||
|
#include "io_internal.h"
|
||
|
|
||
|
int io_createfile(int64* d,const char* s) {
|
||
|
long fd=open(s,O_WRONLY|O_CREAT|O_TRUNC,0600);
|
||
|
if (fd != -1) {
|
||
|
if (io_fd(fd)) {
|
||
|
*d=fd;
|
||
|
return 1;
|
||
|
}
|
||
|
close(fd);
|
||
|
}
|
||
|
return 0;
|
||
|
}
|