ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/fropen.c
Revision: 2.10
Committed: Tue May 13 17:58:32 2003 UTC (20 years, 11 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.9: +2 -2 lines
Log Message:
Changed (char *) casts for memory copies to (void *) and other fixes

File Contents

# User Rev Content
1 greg 1.1 #ifndef lint
2 greg 2.8 static const char RCSid[] = "$Id$";
3 greg 1.1 #endif
4     /*
5     * Find and open a Radiance library file.
6 greg 2.8 *
7     * External symbols declared in standard.h
8     */
9    
10 greg 2.9 #include "copyright.h"
11 greg 1.1
12     #include <stdio.h>
13    
14 greg 2.4 #include "paths.h"
15 greg 1.1
16    
17     FILE *
18 greg 2.7 frlibopen(fname) /* find file and open for reading */
19 greg 1.1 register char *fname;
20     {
21 greg 2.10 extern char *strcpy(), *getrlibpath();
22 greg 1.1 FILE *fp;
23 greg 2.5 char pname[MAXPATH];
24 greg 1.1 register char *sp, *cp;
25    
26     if (fname == NULL)
27     return(NULL);
28    
29 greg 2.5 if (ISDIRSEP(fname[0]) || fname[0] == '.') /* absolute path */
30 greg 1.1 return(fopen(fname, "r"));
31     /* check search path */
32 greg 2.10 sp = getrlibpath();
33 greg 1.1 do {
34     cp = pname;
35 greg 2.3 while (*sp && (*cp = *sp++) != PATHSEP)
36     cp++;
37 greg 2.5 if (cp > pname && !ISDIRSEP(cp[-1]))
38 greg 2.3 *cp++ = DIRSEP;
39 greg 1.1 strcpy(cp, fname);
40     if ((fp = fopen(pname, "r")) != NULL)
41     return(fp); /* got it! */
42     } while (*sp);
43     /* not found */
44     return(NULL);
45     }