29 lines
893 B
C
29 lines
893 B
C
/*
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
* Licensed under the GNU General Public License,
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
|
*/
|
|
|
|
/** \file
|
|
* URL parsing and joining (interface).
|
|
*/
|
|
|
|
#ifndef _NETSURF_UTILS_URL_H_
|
|
#define _NETSURF_UTILS_URL_H_
|
|
|
|
typedef enum {
|
|
URL_FUNC_OK, /**< No error */
|
|
URL_FUNC_NOMEM, /**< Insufficient memory */
|
|
URL_FUNC_FAILED /**< Non fatal error (eg failed to match regex) */
|
|
} url_func_result;
|
|
|
|
void url_init(void);
|
|
url_func_result url_normalize(const char *url, char **result);
|
|
url_func_result url_join(const char *rel, const char *base, char **result);
|
|
url_func_result url_host(const char *url, char **result);
|
|
url_func_result url_scheme(const char *url, char **result);
|
|
url_func_result url_nice(const char *url, char **result);
|
|
|
|
#endif
|