mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-23 06:51:26 +03:00
f1b59814f8
New url_join using liburi, <base href=...>. svn path=/import/netsurf/; revision=441
32 lines
935 B
C
32 lines
935 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 2003 James Bursa <bursa@users.sourceforge.net>
|
|
*/
|
|
|
|
#ifndef _NETSURF_UTILS_UTILS_H_
|
|
#define _NETSURF_UTILS_UTILS_H_
|
|
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include "libxml/encoding.h"
|
|
|
|
void die(const char * const error);
|
|
char * strip(char * const s);
|
|
int whitespace(const char * str);
|
|
void * xcalloc(const size_t n, const size_t size);
|
|
void * xrealloc(void * p, const size_t size);
|
|
void xfree(void* p);
|
|
char * xstrdup(const char * const s);
|
|
char * load(const char * const path);
|
|
char * squash_whitespace(const char * s);
|
|
char * tolat1(xmlChar * s);
|
|
char * tolat1_pre(xmlChar * s);
|
|
char *squash_tolat1(xmlChar *s);
|
|
char *url_join(char *rel_url, char *base_url);
|
|
char *get_host_from_url(char* url);
|
|
bool is_dir(const char *path);
|
|
|
|
#endif
|