this update is performed by extracting the release tarball into this directory and adding any missing files. likely some of these are not intended to be checked into the source, but only generated as part of the release process. tarball from: <https://sourceforge.net/projects/curlftpfs/files/curlftpfs/0.9.1/curlftpfs-0.9.1.tar.gz>
10 lines
272 B
C
10 lines
272 B
C
#ifndef __CURLFTPFS_PATH_UTILS_H__
|
|
#define __CURLFTPFS_PATH_UTILS_H__
|
|
|
|
char* get_file_name(const char* path);
|
|
char* get_full_path(const char* path);
|
|
char* get_fulldir_path(const char* path);
|
|
char* get_dir_path(const char* path);
|
|
|
|
#endif /* __CURLFTPFS_PATH_UTILS_H__ */
|