~ubuntu-branches/debian/jessie/eso-midas/jessie

« back to all changes in this revision

Viewing changes to incl/tfmdef.h

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* @(#)tfmdef.h 19.1 (ESO-IPG) 02/25/03 13:49:43 */
 
2
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 
3
.LANGUAGE        C
 
4
.IDENTIFICATION  header file TFMDEF.H
 
5
.AUTHOR         J.D.Ponz
 
6
.KEYWORDS       Table format buffers
 
7
.ENVIRONMENT    Independent
 
8
.VERSION        3.0  1 Feb 1987 : Conversion into C
 
9
------------------------------------------------------------------------*/
 
10
 
 
11
#define    FMT_NBUF   32     /* maximum number of columns to be formatted */
 
12
 
 
13
struct TBL_FMT
 
14
  {
 
15
  char LABEL[TBL_LABLEN];       /* column label */
 
16
  char UNIT[TBL_UNILEN];        /* column unit  */
 
17
  char TYPE[TBL_TYPLEN];        /* column type  */
 
18
  char FORMAT[TBL_FORLEN+1];    /* column format */
 
19
  long colno;                   /* Table Column number */
 
20
  long FIRST;                   /* first column in the field */
 
21
  long LAST;                    /* last  column in the field */
 
22
  };
 
23