aboutsummaryrefslogtreecommitdiff
path: root/include/fs.h
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2020-02-18 09:12:13 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2020-02-18 09:13:49 -0500
commit6292c699248d3dfa6271ae0961e63436615653f2 (patch)
treec456bacd51414480179c60e520867c8ff9cc1836 /include/fs.h
parent1c2cdc4d8e28ce1b4c0d1ba75686f05fd5dd772d (diff)
downloadspmc-6292c699248d3dfa6271ae0961e63436615653f2.tar.gz
Rework dependency scanning:
* Stop resolving dependencies during manifest creation * Resolve dependencies by path * Die on failure to resolve * Fixed an off-by-one error in manifest_read * Add CLI argument -M|--override-manifest to disable default manifest(s) * Clean up expandpath() a bit
Diffstat (limited to 'include/fs.h')
-rw-r--r--include/fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fs.h b/include/fs.h
index 5e41011..7e8ef12 100644
--- a/include/fs.h
+++ b/include/fs.h
@@ -25,6 +25,6 @@ char *dirname(const char *_path);
char *basename(char *path);
int rsync(const char *_args, const char *_source, const char *_destination);
char *human_readable_size(uint64_t n);
-
+char *expandpath(const char *_path);
#endif //SPM_FSTREE_H