1 |
dashley |
172 |
//$Header$ |
2 |
|
|
// |
3 |
|
|
//******************************************************************************** |
4 |
|
|
//Copyright (C) 2003 David T. Ashley |
5 |
|
|
//******************************************************************************** |
6 |
|
|
//This program or source file is free software; you can redistribute it and/or |
7 |
|
|
//modify it under the terms of the GNU General Public License as published by |
8 |
|
|
//the Free Software Foundation; either version 2 of the License, or (at your |
9 |
|
|
//option) any later version. |
10 |
|
|
// |
11 |
|
|
//This program or source file is distributed in the hope that it will |
12 |
|
|
//be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
|
|
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
|
|
//GNU General Public License for more details. |
15 |
|
|
// |
16 |
|
|
//You may have received a copy of the GNU General Public License |
17 |
|
|
//along with this program; if not, write to the Free Software |
18 |
|
|
//Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 |
|
|
//******************************************************************************** |
20 |
|
|
// |
21 |
|
|
#define MODULE_CF_DECOMP |
22 |
|
|
|
23 |
|
|
#include <assert.h> |
24 |
|
|
#include <ctype.h> |
25 |
|
|
#include <stddef.h> |
26 |
|
|
#include <stdio.h> |
27 |
|
|
#include <string.h> |
28 |
|
|
#include <time.h> |
29 |
|
|
|
30 |
|
|
#include "cf_decomp.h" |
31 |
|
|
|
32 |
|
|
|
33 |
|
|
/******************************************************************/ |
34 |
|
|
/*** VERSION CONTROL IDENTITY FUNCTIONS ************************/ |
35 |
|
|
/******************************************************************/ |
36 |
|
|
const char *CF_DECOMP_cvcinfo(void) |
37 |
|
|
{ |
38 |
|
|
return("$Header$"); |
39 |
|
|
} |
40 |
|
|
|
41 |
|
|
const char *CF_DECOMP_hvcinfo(void) |
42 |
|
|
{ |
43 |
|
|
return(CF_DECOMP_H_VERSION); |
44 |
|
|
} |
45 |
|
|
|
46 |
|
|
//******************************************************************************** |
47 |
|
|
// $Log: cf_decomp.c,v $ |
48 |
|
|
// Revision 1.2 2003/07/01 03:55:04 dtashley |
49 |
|
|
// Removal of extra log line. |
50 |
|
|
// |
51 |
|
|
// Revision 1.1 2003/07/01 03:53:28 dtashley |
52 |
|
|
// Addition of module CF_DECOMP. |
53 |
|
|
//******************************************************************************** |
54 |
|
|
// End of CF_DECOMP.C. |
55 |
|
|
//******************************************************************************** |