1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
TP-Link_Archer-XR500v/EN7526G_3.18Kernel_SDK/apps/public/bftpd/cwd.h
2024-07-22 01:58:46 -03:00

18 lines
359 B
C
Executable File

#ifndef __BFTPD_CWD_H
#define __BFTPD_CWD_H
// Changes the current working directory following symlinks
int bftpd_cwd_chdir(char *dir);
// Returns the current working directory
char *bftpd_cwd_getcwd();
// Makes a relative path absolute following symlinks
char *bftpd_cwd_mappath(char *path);
// Stuff
void bftpd_cwd_init();
void bftpd_cwd_end();
#endif