File: hdiff.h

package info (click to toggle)
iraf-st4gem 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 30,316 kB
  • sloc: fortran: 4,161; ansic: 2,564; pascal: 1,092; lisp: 1,046; yacc: 969; makefile: 89; python: 18; sh: 7
file content (15 lines) | stat: -rw-r--r-- 613 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# HDIFF.H -- The size and location of information in the user area

# Note that hdiff does not use the imio$db interface to access header
# keywords. If the structure of the user area should ever change, hdiff
# would have to be rewritten. The current structure is that the user area 
# is divided into fixed length records, each terminated by a newline. Each
# record has the form "keyword = value / comment", where the keyword is 
# located in the first eight characters and the value starts in or after 
# the tenth character.

define	SZ_KEYWORD	8
define	SZ_RECORD	81
define	SZ_VALUE	70

define	START_VALUE	10