Remove #157 which is done
[privoxy.git] / miscutil.h
1 #ifndef MISCUTIL_H_INCLUDED
2 #define MISCUTIL_H_INCLUDED
3 #define MISCUTIL_H_VERSION "$Id: miscutil.h,v 1.37 2012/11/24 13:58:17 fabiankeil Exp $"
4 /*********************************************************************
5  *
6  * File        :  $Source: /cvsroot/ijbswa/current/miscutil.h,v $
7  *
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
11  *                any other file.
12  *
13  * Copyright   :  Written by and Copyright (C) 2001-2011 the
14  *                Privoxy team. http://www.privoxy.org/
15  *
16  *                Based on the Internet Junkbuster originally written
17  *                by and Copyright (C) 1997 Anonymous Coders and
18  *                Junkbusters Corporation.  http://www.junkbusters.com
19  *
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.
25  *
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.
31  *
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.
37  *
38  *********************************************************************/
39
40
41 #include "project.h"
42
43 #if defined(__cplusplus)
44 extern "C" {
45 #endif
46
47 extern const char *basedir;
48 extern void *zalloc(size_t size);
49 extern void *zalloc_or_die(size_t size);
50 extern char *strdup_or_die(const char *str);
51 extern void *malloc_or_die(size_t buffer_size);
52
53 #if defined(unix)
54 extern void write_pid_file(void);
55 #endif /* unix */
56
57 extern unsigned int hash_string(const char* s);
58
59 extern int strcmpic(const char *s1, const char *s2);
60 extern int strncmpic(const char *s1, const char *s2, size_t n);
61
62 extern jb_err string_append(char **target_string, const char *text_to_append);
63 extern jb_err string_join  (char **target_string,       char *text_to_append);
64 extern char *string_toupper(const char *string);
65 extern void string_move(char *dst, char *src);
66
67 extern char *chomp(char *string);
68 extern char *bindup(const char *string, size_t len);
69
70 extern char *make_path(const char * dir, const char * file);
71
72 long int pick_from_range(long int range);
73
74 #ifndef HAVE_SNPRINTF
75 extern int snprintf(char *, size_t, const char *, /*args*/ ...);
76 #endif /* ndef HAVE_SNPRINTF */
77
78 #if !defined(HAVE_TIMEGM) && defined(HAVE_TZSET) && defined(HAVE_PUTENV)
79 time_t timegm(struct tm *tm);
80 #endif /* !defined(HAVE_TIMEGM) && defined(HAVE_TZSET) && defined(HAVE_PUTENV) */
81
82 /* Here's looking at you, Ulrich. */
83 #if !defined(HAVE_STRLCPY)
84 size_t privoxy_strlcpy(char *destination, const char *source, size_t size);
85 #define strlcpy privoxy_strlcpy
86 #define USE_PRIVOXY_STRLCPY 1
87 #define HAVE_STRLCPY 1
88 #endif /* ndef HAVE_STRLCPY*/
89
90 #ifndef HAVE_STRLCAT
91 size_t privoxy_strlcat(char *destination, const char *source, size_t size);
92 #define strlcat privoxy_strlcat
93 #endif /* ndef HAVE_STRLCAT */
94
95 /* Revision control strings from this header and associated .c file */
96 extern const char miscutil_rcs[];
97 extern const char miscutil_h_rcs[];
98
99 #if defined(__cplusplus)
100 }
101 #endif
102
103 #endif /* ndef MISCUTIL_H_INCLUDED */
104
105 /*
106   Local Variables:
107   tab-width: 3
108   end:
109 */