summaryrefslogblamecommitdiffstats
path: root/init.h
blob: 392833974225b78926c8be43235fbe725781cb14 (plain) (tree)
1
2
3
4
5
6
7
8
9
   
        
                         

           
                                                                                   
                                   
  
             



                                                                                
  



                                                                                
  

                                                                               
   
 

                   
 
                    
 
                 
                
 

                                                                                             
                                
                                                                    
 
                        
/**
 * @file
 * Config/command parsing
 *
 * @authors
 * Copyright (C) 1996-2002,2007,2010,2012-2013,2016 Michael R. Elkins <me@mutt.org>
 * 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 <http://www.gnu.org/licenses/>.
 */

#ifndef MUTT_INIT_H
#define MUTT_INIT_H

#include <stdbool.h>

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 */