shithub: femtolisp

ref: 7da7a91bc8a0162bf0f21d298c1a356fc2cbce00
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