#ifndef _SYS_FS_H #define _SYS_FS_H #include #ifdef __cplusplus extern "C" { #endif int chdir(const char *path); int chroot(const char *path); char *getcwd(char *buf, size_t size); #ifdef __cplusplus } #endif #endif