1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-27 20:44:10 +00:00
falk-werner_webfuse-provider/examples/static_filesystem/path.h
2020-06-16 23:39:45 +02:00

44 lines
530 B
C++

#ifndef PATH_H
#define PATH_H
#ifndef __cplusplus
#include <stddef.h>
#else
#include <cstddef>
using ::std::size_t;
#endif
#ifdef __cplusplus
extern "C"
{
#endif
struct path;
extern struct path *
path_create(
char const * value);
extern void
path_dispose(
struct path * path);
extern size_t
path_element_count(
struct path * path);
extern char const *
path_get_element(
struct path * path,
size_t i);
extern char const *
path_get_filename(
struct path * path);
#ifdef __cplusplus
}
#endif
#endif