Browse Source

Anlegen der Dateien slot_machine.c, slot_machine.h, test_slot_machine.c

remotes/origin/dev
fdai7472 11 months ago
parent
commit
78f23e4622
  1. 0
      src/main/c/Stefan/place_your_code_here.txt
  2. 3
      src/main/c/Stefan/slot_machine.c
  3. 6
      src/main/c/Stefan/slot_machine.h
  4. 0
      src/test/c/Stefan/place_your_tests_here.txt
  5. 8
      src/test/c/Stefan/test_slot_machine.c

0
src/main/c/Stefan/place_your_code_here.txt

3
src/main/c/Stefan/slot_machine.c

@ -0,0 +1,3 @@
#include "slot_machine.h"
void slotMachine(){}

6
src/main/c/Stefan/slot_machine.h

@ -0,0 +1,6 @@
#ifndef SLOT_MACHINE_H
#define SLOT_MACHINE_H
void slotMachine();
#endif // SLOT_MACHINE_H

0
src/test/c/Stefan/place_your_tests_here.txt

8
src/test/c/Stefan/test_slot_machine.c

@ -0,0 +1,8 @@
#include "slot_machine.h"
#include "unity.h"
void setUp() {}
void tearDown() {}
void test_test(){}
Loading…
Cancel
Save