/* Yash: yet another shell */
/* yash.h: basic functions of the shell and miscellanies */
/* (C) 2007-2010 magicant */
/* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* 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 . */
#ifndef YASH_YASH_H
#define YASH_YASH_H
#include
extern pid_t shell_pid, shell_pgid;
static inline void exit_shell(void)
__attribute__((noreturn));
extern void exit_shell_with_status(int status)
__attribute__((noreturn));
extern struct input_file_info_T *stdin_input_file_info;
struct parseinfo_T;
extern void exec_wcs(const wchar_t *code, const char *name, _Bool finally_exit)
__attribute__((nonnull(1)));
extern void exec_input(int fd, const char *name,
_Bool interactive, _Bool enable_alias, _Bool finally_exit);
extern _Bool nextforceexit;
extern int exit_builtin(int argc, void **argv)
__attribute__((nonnull));
extern int suspend_builtin(int argc, void **argv)
__attribute__((nonnull));
extern const char *exit_help[], *suspend_help[];
/* Exits the shell with the last exit status.
* This function executes the EXIT trap.
* This function never returns.
* This function is reentrant and exits immediately if reentered. */
void exit_shell(void)
{
exit_shell_with_status(-1);
}
#endif /* YASH_YASH_H */
/* vim: set ts=8 sts=4 sw=4 noet tw=80: */