/* * helpers.h * * Copyright (C) 2015 James Booth * Copyright (C) 2020 - 2026 Michael Vetter * * SPDX-License-Identifier: GPL-3.0-or-later */ #include "glib.h" int load_preferences(void** state); int close_preferences(void** state); int init_chat_sessions(void** state); int 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);