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
9d769577
...
9d769577afd731e460c9224dc4e3dd23fc7481ba
authored
1999-12-09 06:06:19 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
url.h
We don't use inline.
1 parent
9135cfa3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
17 deletions
url/url.h
url/url.h
View file @
9d76957
...
...
@@ -94,24 +94,18 @@ extern void url_mbox_destroy __P ((url_t *));
extern
int
url_create
__P
((
url_t
*
,
const
char
*
name
));
extern
void
url_destroy
__P
((
url_t
*
));
#ifdef __GNUC__
#define INLINE __inline__
#else
#define INLINE
#endif
extern
INLINE
int
url_get_scheme
(
const
url_t
,
char
*
,
unsigned
int
);
extern
INLINE
int
url_get_user
(
const
url_t
,
char
*
,
unsigned
int
);
extern
INLINE
int
url_get_passwd
(
const
url_t
,
char
*
,
unsigned
int
);
extern
INLINE
int
url_get_host
(
const
url_t
,
char
*
,
unsigned
int
);
extern
INLINE
int
url_get_port
(
const
url_t
,
long
*
);
extern
INLINE
int
url_get_path
(
const
url_t
,
char
*
,
unsigned
int
);
extern
INLINE
int
url_get_query
(
const
url_t
,
char
*
,
unsigned
int
);
extern
INLINE
int
url_is_pop
(
const
url_t
);
extern
INLINE
int
url_is_imap
(
const
url_t
);
extern
INLINE
int
url_is_unixmbox
(
const
url_t
);
extern
int
url_get_scheme
(
const
url_t
,
char
*
,
unsigned
int
);
extern
int
url_get_user
(
const
url_t
,
char
*
,
unsigned
int
);
extern
int
url_get_passwd
(
const
url_t
,
char
*
,
unsigned
int
);
extern
int
url_get_host
(
const
url_t
,
char
*
,
unsigned
int
);
extern
int
url_get_port
(
const
url_t
,
long
*
);
extern
int
url_get_path
(
const
url_t
,
char
*
,
unsigned
int
);
extern
int
url_get_query
(
const
url_t
,
char
*
,
unsigned
int
);
extern
int
url_is_pop
(
const
url_t
);
extern
int
url_is_imap
(
const
url_t
);
extern
int
url_is_unixmbox
(
const
url_t
);
/* pop*/
extern
INLINE
int
url_pop_get_auth
(
const
url_t
,
char
*
,
unsigned
int
);
extern
int
url_pop_get_auth
(
const
url_t
,
char
*
,
unsigned
int
);
#ifdef URL_MACROS
# define url_get_scheme(url, prot, n) url->_get_scheme(url, prot, n)
...
...
Please
register
or
sign in
to post a comment