freebsd-dev/usr.bin/tip/libacu/tod.h
Jordan K. Hubbard 18cc36fb15 Tom Gray's new tip changes to support a modem capabilities database and
fixes to many assorted bugs and misfeatures.
Submitted by:	Tom Gray - DCA <dcasba@rain.org>
1995-03-31 11:47:39 +00:00

10 lines
538 B
C

int tod_cmp (const struct timeval *a, const struct timeval *b);
int tod_lt (const struct timeval *a, const struct timeval *b) ;
int tod_gt (const struct timeval *a, const struct timeval *b);
int tod_lte (const struct timeval *a, const struct timeval *b);
int tod_gte (const struct timeval *a, const struct timeval *b);
int tod_eq (const struct timeval *a, const struct timeval *b);
void tod_addto (struct timeval *a, const struct timeval *b);
void tod_subfrom (struct timeval *a, struct timeval b);
void tod_gettime (struct timeval *tp);