mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-19 16:46:21 +00:00
21 lines
514 B
C
21 lines
514 B
C
/*
|
|
* helpers.h
|
|
*
|
|
* Copyright (C) 2015 James Booth <boothj5@gmail.com>
|
|
* Copyright (C) 2020 - 2026 Michael Vetter <jubalh@iodoru.org>
|
|
*
|
|
* 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);
|