diff options
| author | Jack Jamison <jackqjamison@gmail.com> | 2026-07-22 17:27:04 -0400 |
|---|---|---|
| committer | Jack Jamison <jackqjamison@gmail.com> | 2026-07-22 17:27:04 -0400 |
| commit | f253f5e3d606702688deecea2162f1c5289d277c (patch) | |
| tree | cc4cdb6bb53a64d0127adbb174556d0e1a2a1cef /snag/src/util.h | |
| parent | dfff353cf081024f9e145629dd51ef08526bb54d (diff) | |
actually download file to correct location
Diffstat (limited to 'snag/src/util.h')
| -rw-r--r-- | snag/src/util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/snag/src/util.h b/snag/src/util.h index 1a05ab0..081b570 100644 --- a/snag/src/util.h +++ b/snag/src/util.h @@ -28,4 +28,8 @@ void print(const char* format, ...) __attribute__((format(printf, 1, 2))); #define vastrcat(...) vastrcat_(0, __VA_ARGS__, NULL) char* vastrcat_(int dummy, ...); +// posix path functions +#define join_path(...) join_path_(0, __VA_ARGS__, NULL) +char* join_path_(int dummy, ...); + #endif |
