Include little patch from Michael Prokop which fixes the black stripes
[apps/madmutt.git] / lib.h
1 /*
2  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
3  * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
4  * 
5  *     This program is free software; you can redistribute it
6  *     and/or modify it under the terms of the GNU General Public
7  *     License as published by the Free Software Foundation; either
8  *     version 2 of the License, or (at your option) any later
9  *     version.
10  * 
11  *     This program is distributed in the hope that it will be
12  *     useful, but WITHOUT ANY WARRANTY; without even the implied
13  *     warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14  *     PURPOSE.  See the GNU General Public License for more
15  *     details.
16  * 
17  *     You should have received a copy of the GNU General Public
18  *     License along with this program; if not, write to the Free
19  *     Software Foundation, Inc., 59 Temple Place - Suite 330,
20  *     Boston, MA  02111, USA.
21  */ 
22
23 /* mutt functions which are generally useful. */
24
25 #ifndef _LIB_H
26 # define _LIB_H
27
28 # include <stdio.h>
29 # include <string.h>
30 # ifdef HAVE_UNISTD_H
31 #  include <unistd.h> /* needed for SEEK_SET */
32 # endif
33 # include <sys/types.h>
34 # include <sys/stat.h>
35 # include <time.h>
36 # include <limits.h>
37 # include <stdarg.h>
38 # include <signal.h>
39
40 # ifndef _POSIX_PATH_MAX
41 #  include <posix1_lim.h>
42 # endif
43
44 # ifdef ENABLE_NLS
45 #  include <libintl.h>
46 # define _(a) (gettext (a))
47 #  ifdef gettext_noop
48 #   define N_(a) gettext_noop (a)
49 #  else
50 #   define N_(a) (a)
51 #  endif
52 # else
53 #  define _(a) (a)
54 #  define N_(a) a
55 # endif
56
57 # define TRUE 1
58 # define FALSE 0
59
60 # define HUGE_STRING    5120
61 # define LONG_STRING     1024
62 # define STRING          256
63 # define SHORT_STRING    128
64
65 /*
66  * Create a format string to be used with scanf.
67  * To use it, write, for instance, MUTT_FORMAT(HUGE_STRING).
68  * 
69  * See K&R 2nd ed, p. 231 for an explanation.
70  */
71 # define _MUTT_FORMAT_2(a,b)    "%" a  b
72 # define _MUTT_FORMAT_1(a, b)   _MUTT_FORMAT_2(#a, b)
73 # define MUTT_FORMAT(a)         _MUTT_FORMAT_1(a, "s")
74 # define MUTT_FORMAT2(a,b)      _MUTT_FORMAT_1(a, b)
75
76
77 # define FREE(x) safe_free(x)
78 # define NONULL(x) x?x:""
79 # define ISSPACE(c) isspace((unsigned char)c)
80 # define strfcpy(A,B,C) strncpy(A,B,C), *(A+(C)-1)=0
81
82 # undef MAX
83 # undef MIN
84 # define MAX(a,b) ((a) < (b) ? (b) : (a))
85 # define MIN(a,b) ((a) < (b) ? (a) : (b))
86
87
88 #define FOREVER while (1)
89
90 /* this macro must check for *c == 0 since isspace(0) has unreliable behavior
91    on some systems */
92 # define SKIPWS(c) while (*(c) && isspace ((unsigned char) *(c))) c++;
93
94 #define ISBLANK(c) (c == ' ' || c == '\t')
95 /*
96  * These functions aren't defined in lib.c, but
97  * they are used there.
98  *
99  * A non-mutt "implementation" (ahem) can be found in extlib.c.
100  */
101
102 # ifndef _EXTLIB_C
103 extern void (*mutt_error) (const char *, ...);
104 # endif
105 void mutt_exit (int);
106
107 /* The actual library functions. */
108
109 FILE *safe_fopen (const char *, const char *);
110
111 char *mutt_concat_path (char *, const char *, const char *, size_t);
112 char *mutt_read_line (char *, size_t *, FILE *, int *);
113 char *mutt_skip_whitespace (char *);
114 char *mutt_strlower (char *);
115 char *mutt_substrcpy (char *, const char *, const char *, size_t);
116 char *mutt_substrdup (const char *, const char *);
117 char *safe_strcat (char *, size_t, const char *);
118 char *safe_strncat (char *, size_t, const char *, size_t);
119 char *safe_strdup (const char *);
120
121 const char *mutt_stristr (const char *, const char *);
122 const char *mutt_basename (const char *);
123
124 int mutt_copy_stream (FILE *, FILE *);
125 int mutt_copy_bytes (FILE *, FILE *, size_t);
126 int mutt_rx_sanitize_string (char *, size_t, const char *);
127 int mutt_strcasecmp (const char *, const char *);
128 int mutt_strcmp (const char *, const char *);
129 int mutt_strncasecmp (const char *, const char *, size_t);
130 int mutt_strncmp (const char *, const char *, size_t);
131 int mutt_strcoll (const char *, const char *);
132 int safe_open (const char *, int);
133 int safe_symlink (const char *, const char *);
134 int safe_rename (const char *, const char *);
135 int safe_fclose (FILE **);
136
137 size_t mutt_quote_filename (char *, size_t, const char *);
138 size_t mutt_strlen (const char *);
139
140 void *safe_calloc (size_t, size_t);
141 void *safe_malloc (size_t);
142 void mutt_nocurses_error (const char *, ...);
143 void mutt_remove_trailing_ws (char *);
144 void mutt_sanitize_filename (char *, short);
145 void mutt_str_replace (char **p, const char *s);
146 void mutt_str_adjust (char **p);
147 void mutt_unlink (const char *);
148 void safe_free (void *);
149 void safe_realloc (void *, size_t);
150
151 #endif