runit

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

taia_frac.c (142B)


      1 /* Public domain. */
      2 
      3 #include "taia.h"
      4 
      5 double taia_frac(const struct taia *t)
      6 {
      7   return (t->atto * 0.000000001 + t->nano) * 0.000000001;
      8 }