Debug rather than test on everything.
This commit is contained in:
parent
b754c0a71e
commit
dc0ca7c4ca
@ -1,5 +1,5 @@
|
||||
#include <stdio.h>
|
||||
#include "card_test.h"
|
||||
#include "card_debug.h"
|
||||
|
||||
void print_card(struct card *card) {
|
||||
switch (card->face) {
|
@ -1,5 +1,5 @@
|
||||
#ifndef CARD_TEST_H
|
||||
#define CARD_TEST_H
|
||||
#ifndef CARD_DEBUG_H
|
||||
#define CARD_DEBUG_H
|
||||
|
||||
#include "../lib/card.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <stdio.h>
|
||||
#include "deck_test.h"
|
||||
#include "deck_debug.h"
|
||||
|
||||
void print_deck(struct deck *deck) {
|
||||
print_stack(deck->stock);
|
@ -1,5 +1,5 @@
|
||||
#ifndef DECK_TEST_H
|
||||
#define DECK_TEST_H
|
||||
#ifndef DECK_DEBUG_H
|
||||
#define DECK_DEBUG_H
|
||||
|
||||
#include "../lib/deck.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <stdio.h>
|
||||
#include "stack_test.h"
|
||||
#include "stack_debug.h"
|
||||
|
||||
void print_stack(struct stack *stack) {
|
||||
if (empty(stack)) {
|
@ -1,5 +1,5 @@
|
||||
#ifndef STACK_TEST_H
|
||||
#define STACK_TEST_H
|
||||
#ifndef STACK_DEBUG_H
|
||||
#define STACK_DEBUG_H
|
||||
|
||||
#include "../lib/stack.h"
|
||||
|
Loading…
Reference in New Issue
Block a user