sc/uri/uri_example.c

22 lines
653 B
C
Raw Normal View History

2021-02-03 08:09:50 +03:00
#include "sc_uri.h"
#include <stdio.h>
int main(void)
2021-02-03 08:09:50 +03:00
{
2023-06-06 20:26:34 +03:00
struct sc_uri *uri = sc_uri_create("http://user:pass@any.com:8042/over/"
"there?name=jane#doe");
2021-04-14 01:25:28 +03:00
printf("%s \n", uri->str); // prints "http://user:pass@any.com:8042/over/there?name=jane#doe"
printf("%s \n", uri->scheme); // prints "http"
printf("%s \n", uri->host); // prints "any.com"
printf("%s \n", uri->userinfo); // prints "user:pass"
printf("%s \n", uri->port); // prints "8042"
printf("%s \n", uri->path); // prints "/over/there"
printf("%s \n", uri->query); // prints "name=jane"
printf("%s \n", uri->fragment); // prints "doe"
2021-02-03 08:09:50 +03:00
2023-06-06 20:26:34 +03:00
sc_uri_destroy(uri);
2021-02-03 08:09:50 +03:00
return 0;
2021-02-03 08:09:50 +03:00
}