2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2001 Hiroyuki Yamamoto
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
32 #include <sys/types.h>
41 /* The AC_CHECK_SIZEOF() in configure fails for some machines.
42 * we provide some fallback values here */
43 #if !SIZEOF_UNSIGNED_SHORT
44 #undef SIZEOF_UNSIGNED_SHORT
45 #define SIZEOF_UNSIGNED_SHORT 2
47 #if !SIZEOF_UNSIGNED_INT
48 #undef SIZEOF_UNSIGNED_INT
49 #define SIZEOF_UNSIGNED_INT 4
51 #if !SIZEOF_UNSIGNED_LONG
52 #undef SIZEOF_UNSIGNED_LONG
53 #define SIZEOF_UNSIGNED_LONG 4
56 #ifndef HAVE_U32_TYPEDEF
57 #undef u32 /* maybe there is a macro with this name */
59 #define HAVE_U32_TYPEDEF
62 #ifndef BIG_ENDIAN_HOST
63 #if (G_BYTE_ORDER == G_BIG_ENDIAN)
64 #define BIG_ENDIAN_HOST 1
68 #define CHDIR_RETURN_IF_FAIL(dir) \
70 if (change_dir(dir) < 0) return; \
73 #define CHDIR_RETURN_VAL_IF_FAIL(dir, val) \
75 if (change_dir(dir) < 0) return val; \
78 #define Xalloca(ptr, size, iffail) \
80 if ((ptr = alloca(size)) == NULL) { \
81 g_warning("can't allocate memory\n"); \
86 #define Xstrdup_a(ptr, str, iffail) \
90 if ((__tmp = alloca(strlen(str) + 1)) == NULL) { \
91 g_warning("can't allocate memory\n"); \
99 #define Xstrndup_a(ptr, str, len, iffail) \
103 if ((__tmp = alloca(len + 1)) == NULL) { \
104 g_warning("can't allocate memory\n"); \
107 strncpy(__tmp, str, len); \
114 #define FILE_OP_ERROR(file, func) \
116 fprintf(stderr, "%s: ", file); \
120 /* for macro expansion */
122 #define Xstr(x) Str(x)
124 void list_free_strings (GList *list);
125 void slist_free_strings (GSList *list);
127 void hash_free_strings (GHashTable *table);
128 void hash_free_value_mem (GHashTable *table);
130 void ptr_array_free_strings (GPtrArray *array);
132 /* number-string conversion */
133 gint to_number (const gchar *nstr);
134 gchar *itos_buf (gchar *nstr,
136 gchar *itos (gint n);
137 gchar *to_human_readable (off_t size);
139 /* alternative string functions */
140 gint strcmp2 (const gchar *s1,
142 gint strstr2 (const gchar *s1,
144 gint path_cmp (const gchar *s1,
146 gchar *strretchomp (gchar *str);
147 gchar *strtailchomp (gchar *str,
149 gchar *strcasestr (const gchar *haystack,
150 const gchar *needle);
151 gchar *strncpy2 (gchar *dest,
155 /* wide-character functions */
157 int iswalnum (wint_t wc);
160 int iswspace (wint_t wc);
163 wint_t towlower (wint_t wc);
167 size_t wcslen (const wchar_t *s);
170 wchar_t *wcscpy (wchar_t *dest,
174 wchar_t *wcsncpy (wchar_t *dest,
179 wchar_t *wcsdup (const wchar_t *s);
180 wchar_t *wcsndup (const wchar_t *s,
182 wchar_t *strdup_mbstowcs (const gchar *s);
183 gchar *strdup_wcstombs (const wchar_t *s);
184 gint wcsncasecmp (const wchar_t *s1,
187 wchar_t *wcscasestr (const wchar_t *haystack,
188 const wchar_t *needle);
190 gboolean is_next_nonascii (const wchar_t *s);
191 gboolean is_next_mbs (const wchar_t *s);
192 wchar_t *find_wspace (const wchar_t *s);
194 /* functions for string parsing */
195 gint subject_compare (const gchar *s1,
197 void trim_subject (gchar *str);
198 void eliminate_parenthesis (gchar *str,
201 void extract_parenthesis (gchar *str,
205 void extract_one_parenthesis_with_skip_quote (gchar *str,
209 void extract_parenthesis_with_skip_quote (gchar *str,
214 void eliminate_quote (gchar *str,
216 void extract_quote (gchar *str,
218 void eliminate_address_comment (gchar *str);
219 gchar *strchr_with_skip_quote (const gchar *str,
222 gchar *strrchr_with_skip_quote (const gchar *str,
225 void extract_address (gchar *str);
226 GSList *address_list_append (GSList *addr_list,
228 GSList *references_list_append (GSList *msgid_list,
230 GSList *newsgroup_list_append (GSList *group_list,
232 void remove_return (gchar *str);
233 void remove_space (gchar *str);
234 void unfold_line (gchar *str);
235 void subst_char (gchar *str,
238 gboolean is_header_line (const gchar *str);
239 gboolean is_ascii_str (const guchar *str);
240 gint get_quote_level (const gchar *str);
241 GList *uri_list_extract_filenames (const gchar *uri_list);
242 gchar *strstr_with_skip_quote (const gchar *haystack,
243 const gchar *needle);
244 gchar **strsplit_with_quote (const gchar *str,
248 /* return static strings */
249 gchar *get_home_dir (void);
250 gchar *get_rc_dir (void);
251 gchar *get_news_cache_dir (void);
252 gchar *get_imap_cache_dir (void);
253 gchar *get_mbox_cache_dir (void);
254 gchar *get_mime_tmp_dir (void);
255 gchar *get_tmp_file (void);
256 gchar *get_domain_name (void);
258 /* file / directory handling */
259 off_t get_file_size (const gchar *file);
260 off_t get_left_file_size (FILE *fp);
261 gboolean file_exist (const gchar *file,
262 gboolean allow_fifo);
263 gboolean is_dir_exist (const gchar *dir);
264 gint change_dir (const gchar *dir);
265 gint make_dir_hier (const gchar *dir);
266 gint remove_all_files (const gchar *dir);
267 gint remove_numbered_files (const gchar *dir,
270 gint remove_all_numbered_files (const gchar *dir);
271 gint remove_dir_recursive (const gchar *dir);
272 gint copy_file (const gchar *src,
274 gint move_file (const gchar *src,
276 gint change_file_mode_rw (FILE *fp,
278 FILE *my_tmpfile (void);
280 #define is_file_exist(file) file_exist(file, FALSE)
281 #define is_file_or_fifo_exist(file) file_exist(file, TRUE)
283 /* process execution */
284 gint execute_async (gchar *const argv[]);
285 gint execute_sync (gchar *const argv[]);
286 gint execute_command_line (const gchar *cmdline,
289 /* open URI with external browser */
290 gint open_uri(const gchar *uri, const gchar *cmdline);
293 time_t remote_tzoffset_sec (const gchar *zone);
294 time_t tzoffset_sec (time_t *now);
295 gchar *tzoffset (time_t *now);
296 void get_rfc822_date (gchar *buf,
300 void set_log_file (const gchar *filename);
301 void close_log_file (void);
302 void log_verbosity_set (gboolean verbose);
303 void debug_print (const gchar *format, ...) G_GNUC_PRINTF(1, 2);
304 void log_print (const gchar *format, ...) G_GNUC_PRINTF(1, 2);
305 void log_message (const gchar *format, ...) G_GNUC_PRINTF(1, 2);
306 void log_warning (const gchar *format, ...) G_GNUC_PRINTF(1, 2);
307 void log_error (const gchar *format, ...) G_GNUC_PRINTF(1, 2);
309 #endif /* __UTILS_H__ */