NeoMutt  2024-03-23-23-gec7045
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 2391 of file imap.c.

2392{
2393 int rc = imap_path_status(buf_string(path), false);
2394 if (rc < 0)
2395 return -1;
2396 if (rc == 0)
2397 return 1;
2398 return 0;
2399}
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition: buffer.h:97
int imap_path_status(const char *path, bool queue)
Refresh the number of total and new messages.
Definition: imap.c:1171
+ 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 1620 of file mbox.c.

1621{
1622 return mutt_file_check_empty(buf_string(path));
1623}
int mutt_file_check_empty(const char *path)
Is the mailbox empty.
Definition: file.c:1477
+ Here is the call graph for this function: