16 #include "mysys_priv.h"
26 char * my_load_path(
char *
to,
const char *path,
27 const char *own_path_prefix)
31 DBUG_ENTER(
"my_load_path");
32 DBUG_PRINT(
"enter",(
"path: %s prefix: %s",path,
33 own_path_prefix ? own_path_prefix :
""));
35 if ((path[0] == FN_HOMELIB && path[1] == FN_LIBCHAR) ||
36 test_if_hard_path(path))
37 (void) strnmov(buff, path, FN_REFLEN);
38 else if ((is_cur=(path[0] == FN_CURLIB && path[1] == FN_LIBCHAR)) ||
39 (is_prefix(path,FN_PARENTDIR)) ||
44 if (! my_getwd(buff,(uint) (FN_REFLEN-strlen(path)+is_cur),MYF(0)))
45 (void) strncat(buff, path+is_cur, FN_REFLEN-1);
47 (
void) strnmov(buff, path, FN_REFLEN);
50 (
void) strxnmov(buff, FN_REFLEN, own_path_prefix, path, NullS);
51 strnmov(to, buff, FN_REFLEN);
52 to[FN_REFLEN-1]=
'\0';
53 DBUG_PRINT(
"exit",(
"to: %s",to));