File:  [MW Coherent from dump] / coherent / g / usr / lib / misc / titojd.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Wed May 29 04:56:35 2019 UTC (7 years ago) by root
Branches: MarkWilliams, MAIN
CVS tags: relic, HEAD
coherent

/*
 * Convert COHERENT time into julian date
 */
#include "time.h"
#include "local_misc.h"
jday_t
time_to_jday(t)
time_t t;
{
	jday_t jd;
	jd.j_s = (t += 86400L/2) % 86400L;
	jd.j_d = (t / 86400L) + COHEPOCH;
	return jd;
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.