File: func_time.h

package info (click to toggle)
arpalert 2.0.11-5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,412 kB
  • ctags: 517
  • sloc: ansic: 4,372; sh: 500; makefile: 147; perl: 35
file content (26 lines) | stat: -rw-r--r-- 511 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * Copyright (c) 2005-2010 Thierry FOURNIER
 * $Id: func_time.h 690 2008-03-31 18:36:43Z  $
 *
 */

#ifndef __FUNC_TIME_H__
#define __FUNC_TIME_H__

#define BIGEST     1
#define EQUAL      0
#define SMALLEST  -1

/* compare t1 to t2
 * si t1 > t2 =>  1
 * si t1 = t2 =>  0
 * si t1 < t2 => -1
 */
int time_comp(struct timeval *t1, struct timeval *t2);

// minus function for struct timeval
// t1 - t2 => res
void time_sous(struct timeval *t1, struct timeval *t2,
               struct timeval *res);

#endif