| 8 |  | *  getpath.c - function to search for file in a list of directories | 
| 9 |  | */ | 
| 10 |  |  | 
| 11 | < | #include "paths.h" | 
| 11 | > | #include  "standard.h" | 
| 12 |  |  | 
| 13 | < | #define  NULL           0 | 
| 13 | > | #include  "paths.h" | 
| 14 |  |  | 
| 15 | < | #ifndef  NIX | 
| 15 | > | #ifndef  NIX | 
| 16 |  | #include  <pwd.h> | 
| 17 |  | extern struct passwd  *getpwnam(); | 
| 18 |  | #endif | 
| 19 |  |  | 
| 20 | – | extern char  *strcpy(), *strcat(); | 
| 20 |  |  | 
| 22 | – |  | 
| 21 |  | char * | 
| 22 |  | getpath(fname, searchpath, mode)        /* expand fname, return full path */ | 
| 23 |  | register char  *fname; | 
| 24 |  | register char  *searchpath; | 
| 25 |  | int  mode; | 
| 26 |  | { | 
| 27 | < | #ifndef  NIX | 
| 27 | > | #ifndef  NIX | 
| 28 |  | struct passwd  *pwent; | 
| 29 |  | #endif | 
| 30 | < | static char  pname[256]; | 
| 30 | > | static char  pname[MAXPATH]; | 
| 31 |  | register char  *cp; | 
| 32 |  |  | 
| 33 |  | if (fname == NULL) | 
| 34 |  | return(NULL); | 
| 35 |  |  | 
| 36 |  | switch (*fname) { | 
| 37 | < | case DIRSEP:                            /* relative to root */ | 
| 37 | > | CASEDIRSEP:                             /* relative to root */ | 
| 38 |  | case '.':                               /* relative to cwd */ | 
| 39 |  | strcpy(pname, fname); | 
| 40 |  | return(pname); | 
| 41 |  | #ifndef NIX | 
| 42 |  | case '~':                               /* relative to home directory */ | 
| 43 |  | fname++; | 
| 44 | < | if (*fname == '\0' || *fname == DIRSEP) {       /* ours */ | 
| 44 | > | if (*fname == '\0' || ISDIRSEP(*fname)) {       /* ours */ | 
| 45 |  | if ((cp = getenv("HOME")) == NULL) | 
| 46 |  | return(NULL); | 
| 47 |  | strcpy(pname, cp); | 
| 51 |  | cp = pname;                                     /* user */ | 
| 52 |  | do | 
| 53 |  | *cp++ = *fname++; | 
| 54 | < | while (*fname && *fname != DIRSEP); | 
| 54 | > | while (*fname && !ISDIRSEP(*fname)); | 
| 55 |  | *cp = '\0'; | 
| 56 |  | if ((pwent = getpwnam(pname)) == NULL) | 
| 57 |  | return(NULL); | 
| 70 |  | cp = pname; | 
| 71 |  | while (*searchpath && (*cp = *searchpath++) != PATHSEP) | 
| 72 |  | cp++; | 
| 73 | < | if (cp > pname && cp[-1] != DIRSEP) | 
| 73 | > | if (cp > pname && !ISDIRSEP(cp[-1])) | 
| 74 |  | *cp++ = DIRSEP; | 
| 75 |  | strcpy(cp, fname); | 
| 76 |  | if (access(pname, mode) == 0)           /* file accessable? */ |