]> git.ipfire.org Git - people/ms/libloc.git/blob - src/test-libloc.c
database: Add function to align to page boundaries
[people/ms/libloc.git] / src / test-libloc.c
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>
25
26 #include <loc/libloc.h>
27
28 int main(int argc, char** argv) {
29 struct loc_ctx *ctx;
30
31 int err = loc_new(&ctx);
32 if (err < 0)
33 exit(EXIT_FAILURE);
34
35 printf("version %s\n", VERSION);
36
37 loc_unref(ctx);
38 return EXIT_SUCCESS;
39 }