17 lines
505 B
C
17 lines
505 B
C
/*
|
|
* This software is licensed under the terms of the MIT-License
|
|
* See COPYING for further information.
|
|
* ---
|
|
* Copyright (c) 2011-2018, Lukas Weber <laochailan@web.de>.
|
|
* Copyright (c) 2012-2018, Andrei Alexeyev <akari@alienslab.net>.
|
|
*/
|
|
|
|
#pragma once
|
|
#include "taisei.h"
|
|
|
|
#include "private.h"
|
|
#include "syspath_public.h"
|
|
|
|
extern char vfs_syspath_preferred_separator;
|
|
bool vfs_syspath_init(VFSNode *node, const char *path);
|
|
void vfs_syspath_normalize(char *buf, size_t bufsize, const char *path);
|