blob: 4e7dcfe256d2c7702b138d7ecdac2321d450044b (
plain)
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
|