You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
289 B
C
13 lines
289 B
C
22 years ago
|
#include "taia.h"
|
||
|
|
||
|
/* XXX: breaks tai encapsulation */
|
||
|
|
||
|
int taia_less(const struct taia *t,const struct taia *u)
|
||
|
{
|
||
|
if (t->sec.x < u->sec.x) return 1;
|
||
|
if (t->sec.x > u->sec.x) return 0;
|
||
|
if (t->nano < u->nano) return 1;
|
||
|
if (t->nano > u->nano) return 0;
|
||
|
return t->atto < u->atto;
|
||
|
}
|