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

added path stub

This commit is contained in:
Falk Werner 2019-04-19 20:17:32 +02:00
parent 060461a704
commit 6816c87c73
3 changed files with 75 additions and 1 deletions

View File

@ -56,7 +56,8 @@ add_library(webfuse-core STATIC
lib/webfuse/core/message.c
lib/webfuse/core/message_queue.c
lib/webfuse/core/status.c
lib/webfuse/core/string.c
lib/webfuse/core/string.c
lib/webfuse/core/path.c
)
set_target_properties(webfuse-core PROPERTIES OUTPUT_NAME webfuse-core)

34
lib/webfuse/core/path.c Normal file
View File

@ -0,0 +1,34 @@
#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;
}

39
lib/webfuse/core/path.h Normal file
View File

@ -0,0 +1,39 @@
#ifndef WF_PATH_H
#define WF_PATH_H
#ifndef __cplusplus
#include <stddef.h>
#else
#include <cstddef>
using ::std::size_t;
#endif
#ifdef __cplusplus
extern "C"
{
#endif
struct wf_path;
extern struct wf_path *
wf_path_create(
char const * value);
extern void
wf_path_dispose(
struct wf_path * path);
extern size_t
wf_path_element_count(
struct wf_path * path);
extern char const *
wf_path_get_element(
struct wf_path * path,
size_t i);
#ifdef __cplusplus
}
#endif
#endif