slcl/crealpath.h

9 lines
190 B
C

#ifndef CREALPATH_H
#define CREALPATH_H
/* Custom implementation of a GNU's realpath(1)-like function that
* does not require GNU extensions. */
char *crealpath(const char *path);
#endif