description* get_description( header *h, char *lhs)
Returns a pointer to the matching description entry. Return NULL if no string is found.
description *d;
header *hdr;
hdr = new_header();
read_header("myvolume.vol", hdr);
d = get_description(hdr, "scandate");
if (d)
print(STD, "File header says scan date is #s\n", d.rhs);
else
print(STD, "No information about scan date found in header.");
free_header(hdr);
1.0 29/10-96 Ulrik Kjems