Copied missing files from the subversion repository.
[collectd.git] / src / libping / util.h
1 /**
2  * UTILITY header
3  *
4  * Copyright (C) 2001 Jeffrey Fulmer <jdfulmer@armstrong.com>
5  * This file is part of LIBPING
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22 #ifndef UTIL_H
23 #define UTIL_H
24
25 #ifdef HAVE_CONFIG_H
26 # include <config.h>
27 #endif/*HAVE_CONFIG_H*/ 
28
29 #ifdef  HAVE_SYS_TIMES_H
30 # include <sys/times.h>
31 #endif/*HAVE_SYS_TIMES_H*/
32 #if TIME_WITH_SYS_TIME
33 # include <sys/time.h>
34 # include <time.h>
35 #else
36 # if HAVE_SYS_TIME_H
37 #  include <sys/time.h>
38 # else
39 #  include <time.h>
40 # endif /*HAVE_SYS_TIME_H*/
41 #endif  /*TIME_WITH_SYS_TIME*/  
42
43 int elapsed_time( struct timeval *starttime );
44
45 char * substring( char *, int, int );
46
47 #endif  /* UTIL_H */
48