1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Engrampa
*
* Copyright (C) 2005 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
*/
#ifndef _GLIB_UTILS_H
#define _GLIB_UTILS_H
#include <time.h>
#define g_signal_handlers_disconnect_by_data(instance, data) \
g_signal_handlers_disconnect_matched ((instance), G_SIGNAL_MATCH_DATA, \
0, 0, NULL, NULL, (data))
gboolean strchrs (const char *str,
const char *chars);
char * str_substitute (const char *str,
const char *from_str,
const char *to_str);
int strcmp_null_tolerant (const char *s1, const char *s2);
char* escape_str_common (const char *str,
const char *meta_chars,
const char prefix,
const char postfix);
char* escape_str (const char *str,
const char *meta_chars);
gchar * shell_escape (const gchar *filename);
gboolean match_regexps (GRegex **regexps,
const char *string,
GRegexMatchFlags match_options);
char ** search_util_get_patterns (const char *pattern_string);
GRegex ** search_util_get_regexps (const char *pattern_string,
GRegexCompileFlags compile_options);
void free_regexps (GRegex **regexps);
char * _g_strdup_with_max_size (const char *s,
int max_size);
const char * eat_spaces (const char *line);
const char * eat_void_chars (const char *line);
char ** split_line (const char *line,
int n_fields);
const char * get_last_field (const char *line,
int last_field);
int n_fields (char **str_array);
char * get_time_string (time_t time);
GPtrArray * g_ptr_array_copy (GPtrArray *array);
void g_ptr_array_free_full (GPtrArray *array,
GFunc func,
gpointer user_data);
void g_ptr_array_reverse (GPtrArray *array);
int g_ptr_array_binary_search (GPtrArray *array,
gpointer value,
GCompareFunc func);
const char * get_static_string (const char *s);
char* g_uri_display_basename (const char *uri);
/**/
#ifndef __GNUC__
#define __FUNCTION__ ""
#endif
#define DEBUG_INFO __FILE__, __LINE__, __FUNCTION__
void debug (const char *file,
int line,
const char *function,
const char *format, ...);
#endif /* _GLIB_UTILS_H */
|