NeoMutt  2025-01-09-117-gace867
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
path_is_empty()

Is the Mailbox empty? More...

+ Collaboration diagram for path_is_empty():

Functions

static int imap_path_is_empty (struct Buffer *path)
 Is the mailbox empty - Implements MxOps::path_is_empty() -.
 
static int mbox_path_is_empty (struct Buffer *path)
 Is the mailbox empty - Implements MxOps::path_is_empty() -.
 

Detailed Description

Is the Mailbox empty?

Parameters
pathMailbox to check
Return values
1Mailbox is empty
0Mailbox contains mail
-1Error
Precondition
path is not NULL and not empty

Function Documentation

◆ imap_path_is_empty()

static int imap_path_is_empty ( struct Buffer path)
static

Is the mailbox empty - Implements MxOps::path_is_empty() -.

Definition at line 2393 of file imap.c.

2394{
2395 int rc = imap_path_status(buf_string(path), false);
2396 if (rc < 0)
2397 return -1;
2398 if (rc == 0)
2399 return 1;
2400 return 0;
2401}
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition: buffer.h:96
int imap_path_status(const char *path, bool queue)
Refresh the number of total and new messages.
Definition: imap.c:1175
+ Here is the call graph for this function:

◆ mbox_path_is_empty()

static int mbox_path_is_empty ( struct Buffer path)
static

Is the mailbox empty - Implements MxOps::path_is_empty() -.

Definition at line 1615 of file mbox.c.

1616{
1617 return mutt_file_check_empty(buf_string(path));
1618}
int mutt_file_check_empty(const char *path)
Is the mailbox empty.
Definition: file.c:1329
+ Here is the call graph for this function: