feature1 #4

Merged
Kerem merged 2 commits from feature1 into master 3 years ago

@ -0,0 +1,6 @@
#include "feature1.h"
void feature1()
{
printf("feature1\n");
}

@ -0,0 +1,6 @@
#ifndef _FEATURE1_H_
#define _FEATURE1_H_
void feature1();
#endif

@ -1,11 +1,11 @@
#include "feature1.h"
int main(void) int main(void)
{ {
char ledStatus = 1; char ledStatus = 1;
return 0;
printf("Hello, World!"); printf("Hello, World!");
toggleLed(ledStatus); feature1();
return 0;
} }

Loading…
Cancel
Save