/usr/include/funtools/tl.h is in libfuntools-dev 1.4.7-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | /*
* Copyright (c) 1999-2003 Smithsonian Astrophysical Observatory
*/
/*
*
* tl.h -- declarations for tl parsing
*
*/
#ifndef __tl_h
#define __tl_h
#include "prsetup.h"
_PRbeg
double tlp2i _PRx((double dp, double tlmin, double binsiz, int type));
int itlp2i _PRx((double dp, double tlmin, double binsiz, int type));
double tli2p _PRx((double di, double tlmin, double binsiz, int type));
double tldim _PRx((double tlmin, double tlmax, double binsiz, int type));
_PRend
#endif
|