shithub: sl

ref: 928b9672e762a003d26f00fc6d1703d5d01ace31
dir: /llt/dirpath.h/

View raw version
#ifndef __DIRPATH_H_
#define __DIRPATH_H_

#define PATHSEP '/'
#define PATHSEPSTRING "/"
#define PATHLISTSEP ':'
#define PATHLISTSEPSTRING ":"
#define ISPATHSEP(c) ((c)=='/')

void get_cwd(char *buf, size_t size);
int set_cwd(char *buf);
char *get_exename(char *buf, size_t size);
void path_to_dirname(char *path);

#endif