Exemple #1
0
int main()
{
    print_hello_world();
    printf("%d\n", add_integers(1, 2));
    print_hello_world();
    printf("%d\n", add_integers(4, 2));

    return 0;
}
Exemple #2
0
void print_i2c_inbuff(){
    lcdGoTo(0);
    lcd_init();
    while(!ringbuffer_is_empty()){
        lcdChar(ringbuffer_get());
    }

    print_hello_world();
}
int main(int arch, char *argv[])
{
	print_hello_world();

	return (0);
}
Exemple #4
0
int main(int argc, char* argv[]) {
	print_hello_world();
	print_something();
	return 0;
}
Exemple #5
0
int main()
{
	print_hello_world();
	return 0;
}