7 lines
114 B
C
7 lines
114 B
C
|
#include "taia.h"
|
||
|
|
||
|
double taia_frac(struct taia *t)
|
||
|
{
|
||
|
return (t->atto * 0.000000001 + t->nano) * 0.000000001;
|
||
|
}
|