46 lines
816 B
C
46 lines
816 B
C
/* Copyright (c) 1984 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
/* #ident "@(#)sa:saghdr.h 1.4" */
|
|
#ident "$Header: /proj/irix6.5.7m/isms/eoe/cmd/sa/RCS/saghdr.h,v 1.3 1986/09/17 22:29:30 scott Exp $"
|
|
/* saghdr.h 1.4 of 5/13/85 */
|
|
#include <stdio.h>
|
|
#define NPTS 100
|
|
#define NFLD 9
|
|
#define FLDCH 10
|
|
#ifndef DEBUG
|
|
#define DEBUG 0
|
|
#endif
|
|
|
|
struct entry {
|
|
char tm[9];
|
|
float hr;
|
|
float val;
|
|
char qfld[8];
|
|
};
|
|
|
|
struct array {
|
|
char hname[56];
|
|
struct entry ent[NPTS];
|
|
};
|
|
|
|
|
|
struct c {
|
|
char name[60];
|
|
char op;
|
|
struct array *dptr;
|
|
};
|
|
|
|
struct p {
|
|
char spec[60];
|
|
struct c c[5];
|
|
char mn[10], mx[10];
|
|
float min, max;
|
|
int jitems;
|
|
int mode;
|
|
};
|