FreeRTOS-Kernel/FreeRTOS-Plus/Test/FreeRTOS-Plus-TCP/Unit/tests/example/hello_world.h
Aniruddha Kanhere a9b2aac4e9
Folder structure change + Fix broken Projects (#103)
* Update folder structure

* Correct project files

* Move test folder

* Some changes after Yuki's comments
2020-06-26 12:09:36 -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