mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
370 B
17 lines
370 B
#ifndef GO_GLIB_EXTRAS_H
|
|
#define GO_GLIB_EXTRAS_H
|
|
|
|
#include <glib.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
guint go_ascii_strcase_hash(gconstpointer v);
|
|
gint go_ascii_strcase_equal(gconstpointer v, gconstpointer v2);
|
|
|
|
char const *go_guess_encoding(char const *raw, gsize len,
|
|
char const *user_guess, char **utf8_str);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* GO_GLIB_EXTRAS_H */
|