-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathutil.h
41 lines (36 loc) · 1.5 KB
/
util.h
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
/*
* Gjay - Gtk+ DJ music playlist creator
* Copyright (C) 2010 Craig Small
*
* 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef UTIL_H
#define UTIL_H
#include <glib.h>
void * gjay_dlsym(void *handle, const char const *func_name);
#define strdup_to_utf8(str) (strdup_convert(str, -1, "UTF8", "LATIN1"))
#define strdup_to_latin1(str) (strdup_convert(str, -1, "LATIN1", "UTF8"))
gchar * strdup_to_utf8_auto ( const gchar * str,
gssize length );
#ifdef ASSUME_LATIN1
gchar * strdup_convert ( const gchar * str,
gssize length,
const gchar * enc_to,
const gchar * enc_from );
#else
#define strdup_convert(str, length, enc_to, enc_from) (g_strdup(str))
#endif /* ASSUME_LATIN1 */
float strtof_gjay ( const char * nptr,
char ** endptr);
#endif /* UTIL_H */