1
0
mirror of https://github.com/falk-werner/webfuse synced 2025-06-13 12:54:15 +00:00
falk-werner_webfuse/lib/webfuse/core/path.c

35 lines
422 B
C
Raw Normal View History

2019-04-19 18:17:32 +00:00
#include "webfuse/core/path.h"
struct wf_path *
wf_path_create(
char const * value)
{
(void) value;
return NULL;
}
void
wf_path_dispose(
struct wf_path * path)
{
(void) path;
}
size_t
wf_path_element_count(
struct wf_path * path)
{
(void) path;
return 0;
}
char const *
wf_path_get_element(
struct wf_path * path,
size_t i)
{
(void) path;
(void) i;
return NULL;
}