NeoMutt  2024-03-23-147-g885fbc
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
exit.c File Reference

Leave the program NOW. More...

#include "config.h"
#include <stdlib.h>
#include "exit.h"
+ Include dependency graph for exit.c:

Go to the source code of this file.

Functions

void mutt_exit (int code)
 Leave NeoMutt NOW.
 

Detailed Description

Leave the program NOW.

Authors
  • Richard Russon

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Definition in file exit.c.

Function Documentation

◆ mutt_exit()

void mutt_exit ( int  code)

Leave NeoMutt NOW.

Some library routines want to exit immediately on error. By having this in the library, mutt_exit() can be overridden.

See also
main.c

Definition at line 41 of file exit.c.

42{
43 exit(code);
44}