ARPDAS_QNX6 1.0
average.h
Go to the documentation of this file.
00001 /* For inclusion by new cycle programs 3/13/97 */
00002 #ifndef AVERAGE_H_INCLUDED
00003 #define AVERAGE_H_INCLUDED
00004 
00005 #ifdef __cplusplus
00006   extern "C" {
00007 #endif
00008 
00009 typedef struct {
00010   int count;
00011   double sum;
00012 } Average_Data;
00013 
00014 extern double Average_Value( Average_Data *data );
00015 extern void Average_Point( Average_Data *data, double pt );
00016 
00017 #ifdef __cplusplus
00018 };
00019 #endif
00020 
00021 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Defines