blob: e998f3b87fd42c062bf3fa657d5a30dfce8b2693 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/** \file listmode.h
* \brief Header: directory panel listing format editor
*/
#ifndef MC__LISTMODE_H
#define MC__LISTMODE_H
/*** typedefs(not structures) and defined constants **********************************************/
/*** enums ***************************************************************************************/
/*** structures declarations (and typedefs of structures)*****************************************/
/*** global variables defined in .c file *********************************************************/
/*** declarations of public functions ************************************************************/
#ifdef LISTMODE_EDITOR
char *listmode_edit (char *);
#endif
/*** inline functions ****************************************************************************/
#endif
|