diff options
author | June McEnroe <june@causal.agency> | 2021-10-16 17:03:31 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-10-16 17:03:31 -0400 |
commit | b6cf41ab77a4324b4f4cf0bc9e3d82a5fef9ebd4 (patch) | |
tree | 45fb76bbe6f5037d5827130c89e63e6d9cc22c16 /chat.h | |
parent | chroot: Factor out and add OpenBSD build (diff) | |
download | catgirl-b6cf41ab77a4324b4f4cf0bc9e3d82a5fef9ebd4.tar.gz catgirl-b6cf41ab77a4324b4f4cf0bc9e3d82a5fef9ebd4.zip |
Import refactored xdg.c from pounce
Diffstat (limited to 'chat.h')
-rw-r--r-- | chat.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chat.h b/chat.h index eec0e44..19d2b18 100644 --- a/chat.h +++ b/chat.h @@ -404,11 +404,10 @@ void logFormat(uint id, const time_t *time, const char *format, ...) __attribute__((format(printf, 3, 4))); void logClose(void); -const char *configPath(const char **dirs, const char *path); -const char *dataPath(const char **dirs, const char *path); +char *configPath(char *buf, size_t cap, const char *path, int i); +char *dataPath(char *buf, size_t cap, const char *path, int i); FILE *configOpen(const char *path, const char *mode); FILE *dataOpen(const char *path, const char *mode); -const char *dataMkdir(const char *path); int getopt_config( int argc, char *const *argv, |