FreeRTOS-Kernel/FreeRTOS-Plus/Test/Unit-Tests/tests/example/hello_world.h
Aniruddha Kanhere 95a3a02f95
FreeRTOS-Plus: Unit testing Infrastructure and examples (#72)
* Added CMock as submodule

* Makefile added

* Removed TEMP from Makefile

* Added configuration files and header files

* Update Makefile

* Test runner working

* make clean

* Example added with README

* Update README.md

* Restored +TCP files

* Cleared +TCP changes

* removed comments from Makefile

* Update README.md

* Update README.md

* Update README.md

* Updated Test/Unit-test/readme.md
2020-05-22 16:26:59 -07:00

10 lines
189 B
C

#ifndef __HELLO_WORLD__
#define __HELLO_WORLD__
#include <stdio.h>
#include <stdint.h>
int8_t average(int8_t value1, int8_t value2, int8_t value3);
int Print_Hello_world( void );
#endif