/* * Copyright (C) 2006-2008 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ /** \file fd.h exported symbols from fd.c */ 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 para_munmap(void *start, size_t length); int para_write_file(const char *filename, const void *buf, size_t size);