]> git.ipfire.org Git - people/ms/libloc.git/blame - src/test-libloc.c
importer: Drop EDROP as it has been merged into DROP
[people/ms/libloc.git] / src / test-libloc.c
CommitLineData
46aded9a
MT
1/*
2 libloc - A library to determine the location of someone on the Internet
3
4 Copyright (C) 2017 IPFire Development Team <info@ipfire.org>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15*/
16
17#include <stdio.h>
18#include <stddef.h>
19#include <stdlib.h>
20#include <string.h>
21#include <fcntl.h>
22#include <ctype.h>
23#include <errno.h>
24#include <unistd.h>
37317e4f 25#include <syslog.h>
46aded9a 26
c12a1385 27#include <libloc/libloc.h>
46aded9a
MT
28
29int main(int argc, char** argv) {
30 struct loc_ctx *ctx;
31
32 int err = loc_new(&ctx);
33 if (err < 0)
34 exit(EXIT_FAILURE);
35
37317e4f
MT
36 // Enable debug logging
37 loc_set_log_priority(ctx, LOG_DEBUG);
38
46aded9a
MT
39 printf("version %s\n", VERSION);
40
41 loc_unref(ctx);
42 return EXIT_SUCCESS;
43}