Name-spaced defines.
This commit is contained in:
parent
b35a3105e3
commit
c3f6e16dc8
@ -1,5 +1,5 @@
|
||||
#ifndef CARD_H
|
||||
#define CARD_H
|
||||
#ifndef TTY_SOLITAIRE_CARD_H
|
||||
#define TTY_SOLITAIRE_CARD_H
|
||||
|
||||
#include "frame.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef COMMON_H
|
||||
#define COMMON_H
|
||||
#ifndef TTY_SOLITAIRE_COMMON_H
|
||||
#define TTY_SOLITAIRE_COMMON_H
|
||||
|
||||
extern const char *program_name;
|
||||
#define ERROR_MESSAGE_BUFFER_SIZE 100
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef CURSOR_H
|
||||
#define CURSOR_H
|
||||
#ifndef TTY_SOLITAIRE_CURSOR_H
|
||||
#define TTY_SOLITAIRE_CURSOR_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include "deck.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef DECK_H
|
||||
#define DECK_H
|
||||
#ifndef TTY_SOLITAIRE_DECK_H
|
||||
#define TTY_SOLITAIRE_DECK_H
|
||||
|
||||
#include "stack.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef FRAME_H
|
||||
#define FRAME_H
|
||||
#ifndef TTY_SOLITAIRE_FRAME_H
|
||||
#define TTY_SOLITAIRE_FRAME_H
|
||||
|
||||
#include <ncurses.h>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef GAME_H
|
||||
#define GAME_H
|
||||
#ifndef TTY_SOLITAIRE_GAME_H
|
||||
#define TTY_SOLITAIRE_GAME_H
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef KEYBOARD_H
|
||||
#define KEYBOARD_H
|
||||
#ifndef TTY_SOLITAIRE_KEYBOARD_H
|
||||
#define TTY_SOLITAIRE_KEYBOARD_H
|
||||
|
||||
#include "deck.h"
|
||||
#include "cursor.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef STACK_H
|
||||
#define STACK_H
|
||||
#ifndef TTY_SOLITAIRE_STACK_H
|
||||
#define TTY_SOLITAIRE_STACK_H
|
||||
|
||||
#include "card.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef TEST_HELPER_H
|
||||
#define TEST_HELPER_H
|
||||
#ifndef TTY_SOLITAIRE_TEST_HELPER_H
|
||||
#define TTY_SOLITAIRE_TEST_HELPER_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include "../src/frame.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef TTYSOLITAIRE_TEST_H
|
||||
#define TTYSOLITAIRE_TEST_H
|
||||
#ifndef TTY_SOLITAIRE_TEST_H
|
||||
#define TTY_SOLITAIRE_TEST_H
|
||||
|
||||
void test_card();
|
||||
void test_cursor();
|
||||
|
Loading…
Reference in New Issue
Block a user