#include <string.h>
#include "FCSCard.h"
#include "FCDebugState.h"
#include "FCCompactState.h"
#include "FCIndirectState.h"
Go to the source code of this file.
Defines | |
#define | MakeUpperCase(c) ( (((c)>='a') && ((c)<='z')) ? ((c)+'A'-'a') : (c)) |
Convert a letter to uppercase (toupper is too general). | |
Variables | |
char | CardMap10 [14][4] = { " ", "A", "2", "3", "4", "5", "6", "7", "8", "9", "10", "J", "Q", "K" } |
String representation of cards with a 10 string. | |
char | CardMapT [14][4] = { " ", "A", "2", "3", "4", "5", "6", "7", "8", "9", "T", "J", "Q", "K" } |
String representation of cards with a T string. |
Definition in file FCSCard.cpp.