Files
curlftpfs/path_utils.h
Colin 29db09bd83 update to 0.9.1 release tarball
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>
2024-03-31 22:06:38 +00:00

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__ */