mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-18 02:02:36 +03:00
8da644f442
Dragging URLs into toolbar URL icon; keyboard actions in textareas conform to Wimp's icon editing; display of scale % fixed for 120% svn path=/import/netsurf/; revision=1676
51 lines
1.4 KiB
C
51 lines
1.4 KiB
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>
|
|
* Copyright 2004 John Tytgat <John.Tytgat@aaug.net>
|
|
*/
|
|
|
|
#ifndef _NETSURF_UTILS_UTILS_H_
|
|
#define _NETSURF_UTILS_UTILS_H_
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <sys/types.h>
|
|
#include <regex.h>
|
|
#include "libxml/encoding.h"
|
|
|
|
#ifndef NOF_ELEMENTS
|
|
#define NOF_ELEMENTS(array) (sizeof(array)/sizeof(*(array)))
|
|
#endif
|
|
#ifndef ABS
|
|
#define ABS(x) (((x)>0)?(x):(-(x)))
|
|
#endif
|
|
#ifndef min
|
|
#define min(x,y) (((x)<(y))?(x):(y))
|
|
#endif
|
|
#ifndef max
|
|
#define max(x,y) (((x)>(y))?(x):(y))
|
|
#endif
|
|
|
|
char * strip(char * const s);
|
|
int whitespace(const char * str);
|
|
char * squash_whitespace(const char * s);
|
|
char *cnv_space2nbsp(const char *s);
|
|
char *cnv_local_enc_str(const char *s, size_t length);
|
|
char *cnv_str_local_enc(const char *s);
|
|
char *cnv_strn_local_enc(const char *s, int length);
|
|
bool is_dir(const char *path);
|
|
void regcomp_wrapper(regex_t *preg, const char *regex, int cflags);
|
|
void clean_cookiejar(void);
|
|
void unicode_transliterate(unsigned int c, char **r);
|
|
char *human_friendly_bytesize(unsigned long bytesize);
|
|
|
|
/* Platform specific functions */
|
|
void die(const char * const error);
|
|
void warn_user(const char *warning, const char *detail);
|
|
const char *local_encoding_name(void);
|
|
|
|
#endif
|