www.usr.com/support/gpl/USR9113_release1.0.tar.gz
[bcm963xx.git] / userapps / opensource / ftpd / cwd.h
1 #ifndef __BFTPD_CWD_H
2 #define __BFTPD_CWD_H
3
4 // Changes the current working directory following symlinks
5 int bftpd_cwd_chdir(char *dir);
6
7 // Returns the current working directory
8 char *bftpd_cwd_getcwd();
9
10 // Makes a relative path absolute following symlinks
11 char *bftpd_cwd_mappath(char *path);
12
13 // Stuff
14 void bftpd_cwd_init();
15 void bftpd_cwd_end();
16
17 #endif