Postfix3.3.1
timecmp.h
[詳解]
1 #ifndef _TIMECMP_H_INCLUDED_
2 #define _TIMECMP_H_INCLUDED_
3 
4 #include <time.h>
5 
6 /*++
7 /* NAME
8 /* timecmp 3h
9 /* SUMMARY
10 /* compare two time_t values
11 /* SYNOPSIS
12 /* #include <timecmp.h>
13 /*
14 /* int timecmp(t1, t2)
15 /* time_t t1;
16 /* time_t t2;
17 /* DESCRIPTION
18 /* .nf
19 
20  /* External interface. */
21 
22 extern int timecmp(time_t, time_t);
23 
24 /* LICENSE
25 /* .ad
26 /* .fi
27 /* The Secure Mailer license must be distributed with this software.
28 /* AUTHOR(S)
29 /* Wietse Venema
30 /* IBM T.J. Watson Research
31 /* P.O. Box 704
32 /* Yorktown Heights, NY 10598, USA
33 /*
34 /* Viktor Dukhovni
35 /*--*/
36 
37 #endif
int timecmp(time_t, time_t)
Definition: timecmp.c:36