blob: 3b17828bb03f13bd59aecaffa01651d660e8f4ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "hello_world.h"
#include "some_value.h"
int8_t average(int8_t value1, int8_t value2, int8_t value3)
{
return (int8_t)( ( (int16_t)value1 + (int16_t)value2 + (int16_t)value3) / 3 );
}
int Print_Hello_world( void )
{
int32_t value;
value = some_number();
return printf("Hello World! %d\n", value);
}
|