chdir, fchdir, getcwd
Function Prototype
int chdir(const char *pathname);
int fchdir(int filedes);
char *getcwd(char *buf, size_t size);Function
- change directory
getcwdbuffer size must be large enough, or else error
int chdir(const char *pathname);
int fchdir(int filedes);
char *getcwd(char *buf, size_t size);getcwd buffer size must be large enough, or else error