blob: 9e039ae14656a73ddf2788bf852d843f46f57052 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/** \file textconf.h
* \brief Header: prints features specific for this build
*/
#ifndef MC__TEXTCONF_H
#define MC__TEXTCONF_H
/*** typedefs(not structures) and defined constants **********************************************/
/*** enums ***************************************************************************************/
/*** structures declarations (and typedefs of structures)*****************************************/
/*** global variables defined in .c file *********************************************************/
/*** declarations of public functions ************************************************************/
extern void show_version (void);
extern void show_datadirs_extended (void);
extern void show_configure_options (void);
/*** inline functions ****************************************************************************/
#endif /* MC__TEXTCONF_H */
|