NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
path.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_MAILDIR_PATH_H
24
#define MUTT_MAILDIR_PATH_H
25
26
#include "
core/lib.h
"
27
28
struct
Buffer
;
29
struct
stat;
30
31
int
maildir_path_canon
(
struct
Buffer
*path);
32
int
maildir_path_is_empty
(
struct
Buffer
*path);
33
enum
MailboxType
maildir_path_probe
(
const
char
*path,
const
struct
stat *st);
34
35
#endif
/* MUTT_MAILDIR_PATH_H */
lib.h
Convenience wrapper for the core headers.
MailboxType
MailboxType
Supported mailbox formats.
Definition
mailbox.h:40
maildir_path_canon
int maildir_path_canon(struct Buffer *path)
Canonicalise a Mailbox path - Implements MxOps::path_canon() -.
Definition
path.c:44
maildir_path_probe
enum MailboxType maildir_path_probe(const char *path, const struct stat *st)
Is this a Maildir Mailbox?
Definition
path.c:94
maildir_path_is_empty
int maildir_path_is_empty(struct Buffer *path)
Is the mailbox empty.
Definition
path.c:57
Buffer
String manipulation buffer.
Definition
buffer.h:36