1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
/* file.c - Data file functions */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h>
#ifdef STDC_HEADERS
# include <stdlib.h>
# include <string.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include "extern/file.h"
#ifndef BIODATADIR
#define BIODATADIR "/usr/local/share/"PACKAGE
#endif
/* Locate data file */
char *file_locate(char *name) {
char *p, *q;
size_t l, len;
/* Check current directory */
if (access(name, F_OK) != -1) {
return name; }
p = NULL; l = strlen(name);
/* Check env directory */
if ((q = getenv("BIODATADIR")) != NULL) {
len = strlen(q) + 1 + l;
if ((p = realloc(p, len+1)) == NULL) {
return NULL; }
(void)sprintf(p, "%s/%s", q, name);
if (access(p, F_OK) != -1) {
return p; }
}
/* Check system directory */
len = strlen(BIODATADIR) + 1 + l;
if ((p = realloc(p, len+1)) == NULL) {
return NULL; }
(void)sprintf(p, "%s/%s", BIODATADIR, name);
if (access(p, F_OK) != -1) {
return p; }
return NULL; }
|