@ -0,0 +1,6 @@
#include "addition.h"
#include <stdlib.h>
void volladdierer (int* s, int* nc, int a, int b, int c) {
s[0] = 0;
}
#ifndef ADDITION_H
#define ADDITION_H
void volladdierer (int* s, int* nc, int a, int b, int c);
#endif // ADDITION_H
@ -0,0 +1,20 @@
#ifdef TEST
#include "unity.h"
void setUp(void)
{
void tearDown(void)
void test_addition_NeedToImplement(void)
TEST_IGNORE_MESSAGE("Need to Implement addition");
#endif // TEST