summaryrefslogtreecommitdiffstats
path: root/src/libotr-test.c
blob: 77a6b07b031858d6edc6ee63ea2814ce8469cb61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * This file is part of MXE. See LICENSE.md for licensing information.
 */

#include <libotr/proto.h>
#include <libotr/userstate.h>

int main() {
    OtrlUserState userstate;
    OTRL_INIT;
    userstate = otrl_userstate_create();
    otrl_userstate_free(userstate);
    return 0;
}