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
|
/*
* Copyright (C) 2002 Marco Pesenti Gritti
*
* 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, 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 Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef EPHY_STRING_H
#define EPHY_STRING_H
#include <glib.h>
G_BEGIN_DECLS
char * ephy_string_double_underscores (const char *string);
void ephy_string_store_time_in_string (GDate *t,
gchar *str,
const char *format);
gchar *ephy_string_time_to_string (GDate *t,
const char *format);
gboolean ephy_str_to_int (const char *string,
gulong *integer);
char *ephy_str_strip_chr (const char *source,
char remove_this);
int ephy_strcasecmp (const char *string_a,
const char *string_b);
int ephy_strcasecmp_compare_func (gconstpointer string_a,
gconstpointer string_b);
char **ephy_strsplit_with_quotes (const gchar *string,
const gchar *delimiter,
gint max_tokens,
const gchar *quotes);
gchar *ephy_string_shorten (const gchar *str,
gint target_length);
char **ephy_strsplit_multiple_delimiters_with_quotes (const gchar *string,
const gchar *delimiters,
gint max_tokens,
const gchar *quotes);
char *ephy_str_replace_substring (const char *string,
const char *substring,
const char *replacement);
G_END_DECLS
#endif
|