blob: 43eb44706c8af7128b1a24004ed9923041b7846a (
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
|