Skip to content
Snippets Groups Projects
Commit 4ccde681 authored by rswindell's avatar rswindell
Browse files

Added MAX_PATH definition (and use in _fullpath)

parent eae914cd
No related branches found
No related tags found
No related merge requests found
......@@ -69,6 +69,18 @@
#define RIP (1<<2) /* RIP compatible terminal detected */
#define WIP (1<<3) /* WIP compatible terminal detected */
#ifndef MAX_PATH
#ifdef MAXPATHLEN
#define MAX_PATH MAXPATHLEN /* clib.h */
#elif defined PATH_MAX
#define MAX_PATH PATH_MAX
#elif defined _MAX_PATH
#define MAX_PATH _MAX_PATH
#else
#define MAX_PATH 260
#endif
#endif
#ifndef uchar /* Short-hand for unsigned data types */
#define uchar unsigned char
#endif
......
......@@ -143,14 +143,14 @@ char* strrev(char* str)
/* This is a bit of a hack, but it works */
char* _fullpath(char* absPath, const char* relPath, size_t maxLength)
{
char *curdir = (char *) malloc(PATH_MAX+1);
char *curdir = (char *) malloc(MAX_PATH+1);
if(curdir == NULL) {
strcpy(absPath,relPath);
return(absPath);
}
getcwd(curdir, PATH_MAX);
getcwd(curdir, MAX_PATH);
if(chdir(relPath)!=0) /* error, invalid dir */
strcpy(absPath,relPath);
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment