Browse Source

add files for reihen

master
fdai7848 11 months ago
parent
commit
7cf036b53a
  1. 7
      src/reihen.c
  2. 6
      src/reihen.h
  3. 17
      test/test_reihen.c

7
src/reihen.c

@ -0,0 +1,7 @@
#include <stdio.h>
#include <limits.h>
#include <stdbool.h>
#include "reihen.h"
#include "exponent.h"
#include "logarithmus.h"

6
src/reihen.h

@ -0,0 +1,6 @@
#ifndef REIHEN_H
#define REIHEN_H
#endif // reihen.h

17
test/test_reihen.c

@ -0,0 +1,17 @@
#ifdef TEST
#include "unity.h"
#include "reihen.h"
#include "exponent.h"
#include "logarithmus.h"
void setUp(void)
{
}
void tearDown(void)
{
}
#endif // TEST
Loading…
Cancel
Save