1 |
//----------------------------------------------------------------------------------------------------
|
2 |
//$Header: /home/dashley/cvsrep/e3ft_gpl01/e3ft_gpl01/dtaipubs/cron/2010/blackjack_201010/source/bjcceval/memops.c,v 1.5 2012/03/30 00:20:14 dashley Exp $
|
3 |
//----------------------------------------------------------------------------------------------------
|
4 |
//Copyright (C) 2012, David T. Ashley.
|
5 |
//
|
6 |
//This file is part of BJCCEVAL, a program that evaluates by simulation
|
7 |
//the best basic strategy, card-counting, and other playing strategies
|
8 |
//for several variants of the game of Blackjack.
|
9 |
//
|
10 |
//BJCCEVAL is free software: you can redistribute it and/or modify
|
11 |
//it under the terms of the GNU General Public License as published by
|
12 |
//the Free Software Foundation, either version 3 of the License, or
|
13 |
//(at your option) any later version.
|
14 |
//
|
15 |
//BJCCEVAL is distributed in the hope that it will be useful,
|
16 |
//but WITHOUT ANY WARRANTY; without even the implied warranty of
|
17 |
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
18 |
//GNU General Public License for more details.
|
19 |
//
|
20 |
//You should have received a copy of the GNU General Public License
|
21 |
//along with this program. If not, see <http://www.gnu.org/licenses/>.
|
22 |
//(A copy of the GNU General Public License, Version 3 is provided in
|
23 |
//the file "COPYING" distributed with BJCCEVAL.)
|
24 |
//
|
25 |
//David T. Ashley can be contacted at DASHLEY@GMAIL.COM and/or at
|
26 |
//P.O. Box 918, Marshall MI 49068.
|
27 |
//----------------------------------------------------------------------------------------------------
|
28 |
#define MODULE_MEMOPS
|
29 |
|
30 |
#include "memops.h"
|
31 |
|
32 |
|
33 |
|
34 |
void *MEMOPS_Malloc(size_t n)
|
35 |
{
|
36 |
return(NULL);
|
37 |
}
|
38 |
|
39 |
|
40 |
const char *MEMOPS_Vcinfo_C(void)
|
41 |
{
|
42 |
return("$Revision: 1.5 $");
|
43 |
}
|
44 |
|
45 |
|
46 |
const char *MEMOPS_Vcinfo_H(void)
|
47 |
{
|
48 |
return(MEMOPS_VCINFO_H);
|
49 |
}
|
50 |
|
51 |
|
52 |
#if defined(P_TEST) || defined(P_TEST_MEMOPS)
|
53 |
|
54 |
int MEMOPS_Test(void)
|
55 |
{
|
56 |
return(1);
|
57 |
}
|
58 |
|
59 |
#endif
|
60 |
|
61 |
//----------------------------------------------------------------------------------------------------
|
62 |
//$Log: memops.c,v $
|
63 |
//Revision 1.5 2012/03/30 00:20:14 dashley
|
64 |
//Edits.
|
65 |
//
|
66 |
//Revision 1.4 2012/03/29 23:44:01 dashley
|
67 |
//Edits.
|
68 |
//
|
69 |
//Revision 1.3 2012/03/15 23:38:08 dashley
|
70 |
//License text enhanced.
|
71 |
//
|
72 |
//Revision 1.2 2012/03/14 01:43:37 dashley
|
73 |
//Edits.
|
74 |
//
|
75 |
//Revision 1.1 2012/03/11 21:01:46 dashley
|
76 |
//Initial checkin.
|
77 |
//----------------------------------------------------------------------------------------------------
|
78 |
//End of $RCSfile: memops.c,v $
|
79 |
//----------------------------------------------------------------------------------------------------
|