blob: 5619a478deaa233a7b291fce8b0630437309b9d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef BUFFER_HEADER
#define BUFFER_HEADER
#ifdef __cplusplus
extern "C" {
#endif
void putVal(int Vo, int ref);
int getAvg();
void initBuffer();
#ifdef __cplusplus
}
#endif
#endif
|