Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
a0ff80d8
...
a0ff80d8518e652fcfb47310e9cce738965906ab
authored
2001-07-18 12:54:50 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
New api functions for parsing.
1 parent
6a39d6e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
include/mailutils/url.h
include/mailutils/url.h
View file @
a0ff80d
...
...
@@ -38,6 +38,7 @@ typedef struct _url * url_t;
extern
int
url_create
__P
((
url_t
*
,
const
char
*
name
));
extern
void
url_destroy
__P
((
url_t
*
));
extern
int
url_parse
__P
((
url_t
));
extern
int
url_get_scheme
__P
((
const
url_t
,
char
*
,
size_t
,
size_t
*
));
extern
int
url_get_user
__P
((
const
url_t
,
char
*
,
size_t
,
size_t
*
));
...
...
@@ -55,6 +56,8 @@ extern int url_is_same_path __P ((url_t, url_t));
extern
int
url_is_same_host
__P
((
url_t
,
url_t
));
extern
int
url_is_same_port
__P
((
url_t
,
url_t
));
extern
char
*
url_decode
__P
((
const
char
*
s
));
#ifdef __cplusplus
}
#endif
...
...
Please
register
or
sign in
to post a comment