Debug rather than test on everything.

This commit is contained in:
Murilo Soares Pereira 2010-04-10 13:49:19 -03:00
parent b754c0a71e
commit dc0ca7c4ca
8 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
#include <stdio.h> #include <stdio.h>
#include "card_test.h" #include "card_debug.h"
void print_card(struct card *card) { void print_card(struct card *card) {
switch (card->face) { switch (card->face) {

View File

@ -1,5 +1,5 @@
#ifndef CARD_TEST_H #ifndef CARD_DEBUG_H
#define CARD_TEST_H #define CARD_DEBUG_H
#include "../lib/card.h" #include "../lib/card.h"

View File

@ -1,5 +1,5 @@
#include <stdio.h> #include <stdio.h>
#include "deck_test.h" #include "deck_debug.h"
void print_deck(struct deck *deck) { void print_deck(struct deck *deck) {
print_stack(deck->stock); print_stack(deck->stock);

View File

@ -1,5 +1,5 @@
#ifndef DECK_TEST_H #ifndef DECK_DEBUG_H
#define DECK_TEST_H #define DECK_DEBUG_H
#include "../lib/deck.h" #include "../lib/deck.h"

View File

View File

View File

@ -1,5 +1,5 @@
#include <stdio.h> #include <stdio.h>
#include "stack_test.h" #include "stack_debug.h"
void print_stack(struct stack *stack) { void print_stack(struct stack *stack) {
if (empty(stack)) { if (empty(stack)) {

View File

@ -1,5 +1,5 @@
#ifndef STACK_TEST_H #ifndef STACK_DEBUG_H
#define STACK_TEST_H #define STACK_DEBUG_H
#include "../lib/stack.h" #include "../lib/stack.h"