bufferkdtree (C sources)
C source code for the Python bufferkdtree implementation
 All Classes Files Functions Variables Typedefs Macros
util.h
Go to the documentation of this file.
1 /*
2  * util.h
3  *
4  * Copyright (C) 2013-2016 Fabian Gieseke <fabian.gieseke@di.ku.dk>
5  * License: GPL v2
6  *
7  */
8 #ifndef BRUTE_INCLUDE_UTIL_H_
9 #define BRUTE_INCLUDE_UTIL_H_
10 
11 #include <stdlib.h>
12 #include <assert.h>
13 #include <float.h>
14 #include <math.h>
15 #include <stdio.h>
16 #include <time.h>
17 #include <sys/resource.h>
18 #include <sys/time.h>
19 #include <pthread.h>
20 #include <sched.h>
21 #include <errno.h>
22 #include <string.h>
23 #include <ctype.h>
24 
25 #include "global.h"
26 
33 
40 
41 
42 #endif /* BRUTE_INCLUDE_UTIL_H_ */
void set_default_parameters(BRUTE_PARAMETERS *params)
Definition: util.c:17
Definition: global.h:54
void check_parameters(BRUTE_PARAMETERS *params)
Definition: util.c:30