X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Ffile-name.c;h=f8ad11d07a342f22fd5bf4cfa026d9a93a412ce0;hb=e1fb96f07a06f3133f54702ed8706493989789fe;hp=f3b168176c0c63918d741ac9637fb9e81e8f6657;hpb=a0f88151da33f2537632898156c32a7009178d50;p=pspp-builds.git diff --git a/src/data/file-name.c b/src/data/file-name.c index f3b16817..f8ad11d0 100644 --- a/src/data/file-name.c +++ b/src/data/file-name.c @@ -20,8 +20,10 @@ #include #include +#include #include #include +#include #include "intprops.h" #include "minmax.h" @@ -320,6 +322,30 @@ fn_close (const char *fn, FILE *f) return fclose (f); } +/* Creates a new file named FN with the given PERMISSIONS bits, + and returns a stream for it or a null pointer on failure. + MODE should be "w" or "wb". */ +FILE * +create_stream (const char *fn, const char *mode, mode_t permissions) +{ + int fd; + FILE *stream; + + fd = open (fn, O_WRONLY | O_CREAT | O_TRUNC, permissions); + if (fd < 0) + return NULL; + + stream = fdopen (fd, mode); + if (stream == NULL) + { + int save_errno = errno; + close (fd); + errno = save_errno; + } + + return stream; +} + #if !(defined _WIN32 || defined __WIN32__) /* A file's identity. */ struct file_identity