Fixing header's dependencies.
This commit is contained in:
parent
f01a7c236c
commit
3889a40850
@ -1,6 +1,5 @@
|
|||||||
#include <ncurses.h>
|
#include <ncurses.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#include "frame.h"
|
|
||||||
#include "card.h"
|
#include "card.h"
|
||||||
|
|
||||||
struct card *initialize_card() {
|
struct card *initialize_card() {
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
#ifndef CARD_H
|
#ifndef CARD_H
|
||||||
#define CARD_H
|
#define CARD_H
|
||||||
|
|
||||||
|
#include "frame.h"
|
||||||
|
|
||||||
enum value {
|
enum value {
|
||||||
NO_VALUE = -1,
|
NO_VALUE = -1,
|
||||||
TWO = 2,
|
TWO = 2,
|
||||||
|
@ -2,8 +2,6 @@
|
|||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
#include "frame.h"
|
|
||||||
#include "card.h"
|
|
||||||
#include "display.h"
|
#include "display.h"
|
||||||
|
|
||||||
void init_curses() {
|
void init_curses() {
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
#include <ncurses.h>
|
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#include "frame.h"
|
#include "frame.h"
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
#ifndef FRAME_H
|
#ifndef FRAME_H
|
||||||
#define FRAME_H
|
#define FRAME_H
|
||||||
|
|
||||||
|
#include <ncurses.h>
|
||||||
|
|
||||||
#define FRAME_WIDTH 7
|
#define FRAME_WIDTH 7
|
||||||
#define FRAME_HEIGHT 5
|
#define FRAME_HEIGHT 5
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include "card.h"
|
|
||||||
#include "stack.h"
|
#include "stack.h"
|
||||||
|
|
||||||
void initialize_stack(struct stack **stack) {
|
void initialize_stack(struct stack **stack) {
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
#ifndef STACK_H
|
#ifndef STACK_H
|
||||||
#define STACK_H
|
#define STACK_H
|
||||||
|
|
||||||
|
#include "card.h"
|
||||||
|
|
||||||
struct stack {
|
struct stack {
|
||||||
struct card *card;
|
struct card *card;
|
||||||
struct stack *next;
|
struct stack *next;
|
||||||
|
Loading…
Reference in New Issue
Block a user