11 lines
225 B
C
11 lines
225 B
C
#ifndef _UTIL_H
|
|
#define _UTIL_H
|
|
|
|
float fabsloop( float a, float b, float modl );
|
|
float avgloop( float pta, float ampa, float ptb, float ampb, float modl );
|
|
|
|
int atoi_del( char * data );
|
|
float atof_del( char * data );
|
|
|
|
#endif
|