/** * @file * Config/command parsing * * @authors * Copyright (C) 1996-2002,2007,2010,2012-2013,2016 Michael R. Elkins * Copyright (C) 2004 g10 Code GmbH * * @copyright * 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 MUTT_INIT_H #define MUTT_INIT_H #include struct ConfigSet; struct ListHead; void init_config (struct ConfigSet *cs); int mutt_init (struct ConfigSet *cs, bool skip_sys_rc, struct ListHead *commands); void mutt_opts_cleanup (void); int mutt_query_variables(struct ListHead *queries, bool show_docs); #endif /* MUTT_INIT_H */