Putting functions were they belong.

This commit is contained in:
Murilo Pereira
2011-02-16 23:50:29 -02:00
parent 3420045a35
commit daf0b4809f
5 changed files with 19 additions and 19 deletions

View File

@@ -3,6 +3,10 @@
#include "display.h"
#include "keyboard.h"
static bool cursor_on_stock(struct cursor *cursor) {
return((cursor->x == CURSOR_STARTING_X) && (cursor->y == CURSOR_STARTING_Y));
}
static struct stack *cursor_stack(struct cursor *cursor) {
struct stack *cursor_stack = NULL;