aboutsummaryrefslogblamecommitdiffstats
path: root/doubletotimeval.c
blob: 03bacec7064e0819fbe1d50b4e87deb2e1584313 (plain) (tree)
1
2
3
4
5
6
7

                                                         
            


    
                                                       











                                          





                                                  


                               



                                        
 











                                             
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
#ifndef TEST


void
libsimple_doubletotimeval(struct timeval *tv, double d)
{
	double ns = (long long int)d;
	long int nsi;
	ns = d - ns;
	ns *= (double)1000000L;
	nsi = (long int)ns;
	if (2 * (ns - (double)nsi) >= 1) {
		nsi += 1;
		if (nsi == 1000000L) {
			nsi = 0;
			d += 1;
		}
	} else if (2 * (ns - (double)nsi) <= -1) {
		nsi -= 1;
		if (nsi == -1000000L) {
			nsi = 0;
			d -= 1;
		}
	}
	tv->tv_sec = (time_t)d;
	tv->tv_usec = nsi;
	if (tv->tv_usec < 0) {
		tv->tv_sec -= 1;
		tv->tv_usec += 1000000L;
	}
}


#else
#include "test.h"

int
main(void)
{
	return 0; /* Tested in libsimple.c */
}

#endif