X-Git-Url: http://git.tuebingen.mpg.de/?p=osl.git;a=blobdiff_plain;f=fd.h;h=536e3c8831758a2e8457561371b3d3d0b55b55fc;hp=0ca272d45ab733fb3bddad8eb187d24c41201c88;hb=afee1a06bfa10366c0acb366a2f3b4c09f912cf3;hpb=b0884806fccc7a0b1e489ee57a3fa02e3a16fe84 diff --git a/fd.h b/fd.h index 0ca272d..536e3c8 100644 --- a/fd.h +++ b/fd.h @@ -7,11 +7,12 @@ /** \file fd.h exported symbols from fd.c */ int osl_open(const char *path, int flags, mode_t mode); -int para_opendir(const char *dirname, DIR **dir, int *cwd); -int para_fchdir(int fd); int mmap_full_file(const char *filename, int open_mode, void **map, size_t *size, int *fd_ptr); int osl_munmap(void *start, size_t length); +int write_all(int fd, const char *buf, size_t *len); +int write_file(const char *filename, const void *buf, size_t size); +int truncate_file(const char *filename, off_t size); /** * A wrapper for mkdir(2). @@ -44,3 +45,10 @@ _static_inline_ int osl_rename(const char *old_path, const char *new_path) return -ERRNO_TO_ERROR(errno); return 1; } + +_static_inline_ int osl_stat(const char *path, struct stat *buf) +{ + if (stat(path, buf) >= 0) + return 1; + return -ERRNO_TO_ERROR(errno); +}