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