#include "mx.h"
#include "mbox.h"
+#include "compress.h"
typedef struct {
const char *close; /* close-hook command */
* excl - exclusive lock?
* retry - should retry if unable to lock?
*/
-int mbox_lock_compressed (CONTEXT * ctx, FILE * fp, int excl, int retry)
+static int mbox_lock_compressed (CONTEXT * ctx, FILE * fp, int excl, int retry)
{
int r;
return (r);
}
-void mbox_unlock_compressed (CONTEXT * ctx, FILE * fp)
+static void mbox_unlock_compressed (CONTEXT * ctx, FILE * fp)
{
if (ctx->locked) {
fflush (fp);
return (0);
}
-void restore_path (CONTEXT * ctx)
+static void restore_path (CONTEXT * ctx)
{
p_delete(&ctx->path);
ctx->path = ctx->realpath;
}
/* remove the temporary mailbox */
-void remove_file (CONTEXT * ctx)
+static void remove_file (CONTEXT * ctx)
{
if (ctx->magic == M_MBOX || ctx->magic == M_MMDF)
remove (ctx->path);
int mbox_close_mailbox (CONTEXT *);
int mbox_lock_mailbox (CONTEXT *, int, int);
-void mbox_unlock_mailbox (CONTEXT *);
int mbox_check_empty (const char*);
int mbox_is_magic (const char*, struct stat*);