tty-solitaire/tests/test_helper.h

14 lines
330 B
C
Raw Normal View History

2011-06-06 04:33:49 +00:00
#ifndef TTY_SOLITAIRE_TEST_HELPER_H
#define TTY_SOLITAIRE_TEST_HELPER_H
#include <stdbool.h>
2011-05-31 06:03:13 +00:00
#include "../src/frame.h"
#include "../src/card.h"
#include "../src/stack.h"
bool frames_equal(struct frame *, struct frame *);
bool cards_equal(struct card *, struct card *);
bool stacks_equal(struct stack *, struct stack *);
#endif