summaryrefslogtreecommitdiff
path: root/server/main.c
blob: e1320e35c827344d2a83681205f55137208a4ec3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * som_net / simple library example (c) by jak1
 *
 * som_net / simple library example is licensed under a
 * Creative Commons Attribution-ShareAlike 4.0 International License.
 *
 * You should have received a copy of the license along with this
 * work. If not, see <http://creativecommons.org/licenses/by-sa/4.0/>.
 * Footer
*/

#include "../shared/hook.h"

int main(void)
{
    set_server();
    printf("%d\n", is_client());
    start_chat();
    return 0;
}