mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-02 05:06:59 +03:00
11 lines
224 B
C
11 lines
224 B
C
#ifndef __LIB__URI_H__
|
|
#define __LIB__URI_H__
|
|
|
|
#include <stdbool.h>
|
|
#include <fs/file.h>
|
|
|
|
bool uri_resolve(char *uri, char **resource, char **root, char **path, char **hash);
|
|
struct file_handle *uri_open(char *uri);
|
|
|
|
#endif
|