1 #ifndef MISCUTIL_H_INCLUDED
2 #define MISCUTIL_H_INCLUDED
3 #define MISCUTIL_H_VERSION "$Id: miscutil.h,v 1.32 2011/05/22 10:26:45 fabiankeil Exp $"
4 /*********************************************************************
6 * File : $Source: /cvsroot/ijbswa/current/miscutil.h,v $
8 * Purpose : zalloc, hash_string, strcmpic, strncmpic, and
9 * MinGW32 strdup functions. These are each too small
10 * to deserve their own file but don't really fit in
13 * Copyright : Written by and Copyright (C) 2001-2011 the
14 * Privoxy team. http://www.privoxy.org/
16 * Based on the Internet Junkbuster originally written
17 * by and Copyright (C) 1997 Anonymous Coders and
18 * Junkbusters Corporation. http://www.junkbusters.com
20 * This program is free software; you can redistribute it
21 * and/or modify it under the terms of the GNU General
22 * Public License as published by the Free Software
23 * Foundation; either version 2 of the License, or (at
24 * your option) any later version.
26 * This program is distributed in the hope that it will
27 * be useful, but WITHOUT ANY WARRANTY; without even the
28 * implied warranty of MERCHANTABILITY or FITNESS FOR A
29 * PARTICULAR PURPOSE. See the GNU General Public
30 * License for more details.
32 * The GNU General Public License should be included with
33 * this file. If not, you can view it at
34 * http://www.gnu.org/copyleft/gpl.html
35 * or write to the Free Software Foundation, Inc., 59
36 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
38 *********************************************************************/
43 #if defined(__cplusplus)
47 extern const char *basedir;
48 extern void *zalloc(size_t size);
51 extern void write_pid_file(void);
54 extern unsigned int hash_string(const char* s);
56 extern int strcmpic(const char *s1, const char *s2);
57 extern int strncmpic(const char *s1, const char *s2, size_t n);
59 extern jb_err string_append(char **target_string, const char *text_to_append);
60 extern jb_err string_join (char **target_string, char *text_to_append);
62 extern char *string_toupper(const char *string);
63 extern char *chomp(char *string);
64 extern char *bindup(const char *string, size_t len);
66 extern char *make_path(const char * dir, const char * file);
68 long int pick_from_range(long int range);
71 extern int snprintf(char *, size_t, const char *, /*args*/ ...);
72 #endif /* ndef HAVE_SNPRINTF */
74 #if !defined(HAVE_TIMEGM) && defined(HAVE_TZSET) && defined(HAVE_PUTENV)
75 time_t timegm(struct tm *tm);
76 #endif /* !defined(HAVE_TIMEGM) && defined(HAVE_TZSET) && defined(HAVE_PUTENV) */
78 /* Here's looking at you, Ulrich. */
79 #if !defined(HAVE_STRLCPY)
80 size_t privoxy_strlcpy(char *destination, const char *source, size_t size);
81 #define strlcpy privoxy_strlcpy
82 #define USE_PRIVOXY_STRLCPY 1
83 #define HAVE_STRLCPY 1
84 #endif /* ndef HAVE_STRLCPY*/
87 size_t privoxy_strlcat(char *destination, const char *source, size_t size);
88 #define strlcat privoxy_strlcat
89 #endif /* ndef HAVE_STRLCAT */
91 /* Revision control strings from this header and associated .c file */
92 extern const char miscutil_rcs[];
93 extern const char miscutil_h_rcs[];
95 #if defined(__cplusplus)
99 #endif /* ndef MISCUTIL_H_INCLUDED */