22 lines
311 B
C
22 lines
311 B
C
/**
|
|
* @file framework.h
|
|
*
|
|
* @date Sep 25, 2014
|
|
* @author Andrey Belomutskiy, (c) 2012-2014
|
|
*/
|
|
#ifndef FRAMEWORK_H_
|
|
#define FRAMEWORK_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
void initTestStream(TestStream *ts);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* FRAMEWORK_H_ */
|