00001
00002
00003
00004
00005
00006
00007
00008 #include "config.h"
00009
00010 #ifndef lint
00011 static const char revid[] = "$Id: os__rpath_8c-source.html,v 1.1 2008/06/08 10:21:29 sebdiaz Exp $";
00012 #endif
00013
00014 #ifndef NO_SYSTEM_INCLUDES
00015 #include <string.h>
00016 #endif
00017
00018 #include "db_int.h"
00019
00020
00021
00022
00023
00024
00025
00026 char *
00027 CDB___db_rpath(path)
00028 const char *path;
00029 {
00030 const char *s, *last;
00031
00032 last = NULL;
00033 if (PATH_SEPARATOR[1] != '\0') {
00034 for (s = path; s[0] != '\0'; ++s)
00035 if (strchr(PATH_SEPARATOR, s[0]) != NULL)
00036 last = s;
00037 } else
00038 for (s = path; s[0] != '\0'; ++s)
00039 if (s[0] == PATH_SEPARATOR[0])
00040 last = s;
00041 return ((char *)last);
00042 }