forked from Qihoo360/Atlas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglib-ext.h
More file actions
50 lines (36 loc) · 1.99 KB
/
glib-ext.h
File metadata and controls
50 lines (36 loc) · 1.99 KB
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
/* $%BEGINLICENSE%$
Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
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; version 2 of the
License.
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., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
$%ENDLICENSE%$ */
#ifndef _GLIB_EXT_H_
#define _GLIB_EXT_H_
#include <glib.h>
#include "chassis-exports.h"
CHASSIS_API void g_list_string_free(gpointer data, gpointer user_data);
CHASSIS_API gboolean g_hash_table_true(gpointer key, gpointer value, gpointer user_data);
CHASSIS_API guint g_hash_table_string_hash(gconstpointer _key);
CHASSIS_API gboolean g_hash_table_string_equal(gconstpointer _a, gconstpointer _b);
CHASSIS_API void g_hash_table_string_free(gpointer data);
CHASSIS_API gpointer g_hash_table_lookup_const(GHashTable *h, const gchar *name, gsize name_len);
CHASSIS_API guint g_istr_hash(gconstpointer v);
CHASSIS_API GString *g_string_dup(GString *);
CHASSIS_API gboolean strleq(const gchar *a, gsize a_len, const gchar *b, gsize b_len);
CHASSIS_API gboolean g_string_equal_ci(const GString *a, const GString *b);
CHASSIS_API gboolean g_memeq(const char *a, gsize a_len, const char *b, gsize b_len);
CHASSIS_API int g_string_get_time(GString *s, GTimeVal *gt);
CHASSIS_API int g_string_get_current_time(GString *s);
CHASSIS_API void ge_gtimeval_diff(GTimeVal *old, GTimeVal *new, gint64 *delay);
CHASSIS_API GString *g_string_assign_len(GString *s, const char *, gsize );
CHASSIS_API void g_debug_hexdump(const char *msg, const void *s, size_t len);
#endif