blob: 13e77187d2c8ffb59678ab47ff614d4941deb45b (
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 cd.h
* \brief Header: cd function
*/
#ifndef MC__CD_H
#define MC__CD_H
/*** typedefs(not structures) and defined constants **********************************************/
/*** enums ***************************************************************************************/
/*** structures declarations (and typedefs of structures)*****************************************/
/*** global variables defined in .c file *********************************************************/
/*** declarations of public functions ************************************************************/
void cd_to (const char *path);
void cd_error_message (const char *path);
/*** inline functions ****************************************************************************/
#endif /* MC__CD_H */
|