summaryrefslogtreecommitdiffstats
path: root/compress.h
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2016-11-13 20:02:33 -0800
committerKevin McCarthy <kevin@8t8.us>2016-11-13 20:02:33 -0800
commit56075cc8cfa3bff5d5a31a15a587e1493fb91ba0 (patch)
tree25714c80f14dee31959aff042d2177e54c80b7e6 /compress.h
parent9bf6d74e9cc5a7b6b7a62fdefd6d953d60a422db (diff)
Compress: prefix external functions with "mutt_"
Also, include compress.h in compress.c so the mx_comp_ops doesn't need to be redeclared.
Diffstat (limited to 'compress.h')
-rw-r--r--compress.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/compress.h b/compress.h
index 26beae63..e41fe93e 100644
--- a/compress.h
+++ b/compress.h
@@ -19,10 +19,10 @@
#ifndef _COMPRESS_H_
#define _COMPRESS_H_
-int comp_can_append (CONTEXT *ctx);
-int comp_can_read (const char *path);
-int comp_sync (CONTEXT *ctx);
-int comp_valid_command (const char *cmd);
+int mutt_comp_can_append (CONTEXT *ctx);
+int mutt_comp_can_read (const char *path);
+int mutt_comp_sync (CONTEXT *ctx);
+int mutt_comp_valid_command (const char *cmd);
extern struct mx_ops mx_comp_ops;