blob: 75d446d021fd4255967ff299bf207c31f65d759c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "glib.h"
void load_preferences(void **state);
void close_preferences(void **state);
void init_chat_sessions(void **state);
void close_chat_sessions(void **state);
int utf8_pos_to_col(char *str, int utf8_pos);
void glist_set_cmp(GCompareFunc func);
int glist_contents_equal(const void *actual, const void *expected);
|