24 lines
486 B
C
24 lines
486 B
C
|
#ifndef __DIRPATH_H_
|
||
|
#define __DIRPATH_H_
|
||
|
|
||
|
#ifdef WIN32
|
||
|
#define PATHSEP '\\'
|
||
|
#define PATHSEPSTRING "\\"
|
||
|
#define PATHLISTSEP ';'
|
||
|
#define PATHLISTSEPSTRING ";"
|
||
|
#define ISPATHSEP(c) ((c)=='/' || (c)=='\\')
|
||
|
#define MAXPATHLEN 1024
|
||
|
#else
|
||
|
#define PATHSEP '/'
|
||
|
#define PATHSEPSTRING "/"
|
||
|
#define PATHLISTSEP ':'
|
||
|
#define PATHLISTSEPSTRING ":"
|
||
|
#define ISPATHSEP(c) ((c)=='/')
|
||
|
#endif
|
||
|
|
||
|
void get_cwd(char *buf, size_t size);
|
||
|
int set_cwd(char *buf);
|
||
|
char *get_exename(char *buf, size_t size);
|
||
|
|
||
|
#endif
|