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