rulimine/common/lib/uri.h

11 lines
224 B
C
Raw Normal View History

2020-11-02 11:20:34 +03:00
#ifndef __LIB__URI_H__
#define __LIB__URI_H__
#include <stdbool.h>
#include <fs/file.h>
2022-09-11 21:47:57 +03:00
bool uri_resolve(char *uri, char **resource, char **root, char **path, char **hash);
2021-10-21 02:27:05 +03:00
struct file_handle *uri_open(char *uri);
2020-11-02 11:20:34 +03:00
#endif