Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dir.h « base « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 856a41423329315a21dfb8b3091179ebba481e38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * \file   dir.h
 * \brief  Directory handling.
 * \author Copyright (c) 2002-2008 Jason Perkins and the Premake project
 *
 * \defgroup dir Directory Management
 * \ingroup  base
 *
 * Directory management functions.
 *
 * @{
 */
#if !defined(PREMAKE_DIR_H)
#define PREMAKE_DIR_H

int   dir_create(const char* path);
int   dir_exists(const char* path);
char* dir_get_current(void);
int   dir_set_current(const char* path);

#endif
/** @} */