tabs and tab overview
This commit is contained in:
commit
d07c2a5cc9
244 changed files with 72046 additions and 0 deletions
11
uri.h
Normal file
11
uri.h
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#pragma once
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
bool uri_parse(const char *uri, size_t len,
|
||||
char **scheme, char **user, char **password, char **host,
|
||||
uint16_t *port, char **path, char **query, char **fragment);
|
||||
|
||||
bool hostname_is_localhost(const char *hostname);
|
||||
Loading…
Add table
Add a link
Reference in a new issue