1#ifndef __BFTPD_CWD_H
2#define __BFTPD_CWD_H
3
4// Changes the current working directory following symlinks
5int bftpd_cwd_chdir(char *dir);
6
7// Returns the current working directory
8char *bftpd_cwd_getcwd();
9
10// Makes a relative path absolute following symlinks
11char *bftpd_cwd_mappath(char *path);
12
13// Stuff
14void bftpd_cwd_init();
15void bftpd_cwd_end();
16
17#endif
18