Changes in uspace/lib/uri/uri.h [b7fd2a0:d7b7f5e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/uri/uri.h
rb7fd2a0 rd7b7f5e 49 49 50 50 extern uri_t *uri_parse(const char *); 51 extern errno_t uri_scheme_parse(const char *, const char **);51 extern int uri_scheme_parse(const char *, const char **); 52 52 extern bool uri_scheme_validate(const char *); 53 extern errno_t uri_percent_parse(const char *, const char **, uint8_t *);54 extern errno_t uri_user_info_parse(const char *, const char **);53 extern int uri_percent_parse(const char *, const char **, uint8_t *); 54 extern int uri_user_info_parse(const char *, const char **); 55 55 extern bool uri_user_info_validate(const char *); 56 extern errno_t uri_port_parse(const char *, const char **);56 extern int uri_port_parse(const char *, const char **); 57 57 extern bool uri_port_validate(const char *); 58 58 extern bool uri_validate(uri_t *);
Note:
See TracChangeset
for help on using the changeset viewer.