11 lines
127 B
C++
11 lines
127 B
C++
//
|
|
// file: mkdir.hpp
|
|
//
|
|
|
|
#ifndef MY_MKDIR_H
|
|
#define MY_MKDIR_H
|
|
|
|
// function prototypes
|
|
void fg_mkdir( const char* );
|
|
|
|
#endif
|