mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-03 08:07:17 -05:00
[config] Commented unused functions
This commit is contained in:
parent
7ea7cacade
commit
d7dacd2dbc
@ -85,27 +85,6 @@ test_confdir(const char *home, const char *path,
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO: Check possibility to use <libgen.h> dirname. */
|
|
||||||
static char *
|
|
||||||
elinks_dirname(char *path)
|
|
||||||
{
|
|
||||||
int i;
|
|
||||||
char *dir;
|
|
||||||
|
|
||||||
if (!path) return NULL;
|
|
||||||
|
|
||||||
dir = stracpy(path);
|
|
||||||
if (!dir) return NULL;
|
|
||||||
|
|
||||||
for (i = strlen(dir) - 1; i >= 0; i--)
|
|
||||||
if (dir_sep(dir[i]))
|
|
||||||
break;
|
|
||||||
|
|
||||||
dir[i + 1] = 0;
|
|
||||||
|
|
||||||
return dir;
|
|
||||||
}
|
|
||||||
|
|
||||||
char *
|
char *
|
||||||
get_xdg_config_home(void)
|
get_xdg_config_home(void)
|
||||||
{
|
{
|
||||||
@ -158,6 +137,28 @@ get_xdg_config_home(void)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
/* TODO: Check possibility to use <libgen.h> dirname. */
|
||||||
|
static char *
|
||||||
|
elinks_dirname(char *path)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
char *dir;
|
||||||
|
|
||||||
|
if (!path) return NULL;
|
||||||
|
|
||||||
|
dir = stracpy(path);
|
||||||
|
if (!dir) return NULL;
|
||||||
|
|
||||||
|
for (i = strlen(dir) - 1; i >= 0; i--)
|
||||||
|
if (dir_sep(dir[i]))
|
||||||
|
break;
|
||||||
|
|
||||||
|
dir[i + 1] = 0;
|
||||||
|
|
||||||
|
return dir;
|
||||||
|
}
|
||||||
|
|
||||||
static char *
|
static char *
|
||||||
get_home(void)
|
get_home(void)
|
||||||
{
|
{
|
||||||
@ -198,6 +199,7 @@ end:
|
|||||||
|
|
||||||
return home_elinks;
|
return home_elinks;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void
|
void
|
||||||
init_home(void)
|
init_home(void)
|
||||||
|
Loading…
Reference in New Issue
Block a user