blob: 05a71d88dafbc7b06b50371411b28e92f951a2d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/** \file
* \brief Library Management
*
* See Copyright Notice in im_lib.h
* $Id: im_lib.cpp,v 1.5 2009/10/01 14:43:42 scuri Exp $
*/
#include <stdlib.h>
#include <string.h>
#include "im_lib.h"
/* This appears only here to avoid changing the im_lib.h header for bug fixes */
#define IM_VERSION_FIX ""
#define IM_VERSION_FIX_NUMBER 0
static char *iVersion = "TECVERID.str:IM:LIB:" IM_VERSION IM_VERSION_FIX;
const char iIdent[] =
"$IM: " IM_VERSION IM_VERSION_FIX " " IM_COPYRIGHT " $\n"
"$URL: www.tecgraf.puc-rio.br/im $\n";
const char* imVersion(void)
{
(void)iVersion;
(void)iIdent;
return IM_VERSION IM_VERSION_FIX;
}
const char* imVersionDate(void)
{
return IM_VERSION_DATE;
}
int imVersionNumber(void)
{
return IM_VERSION_NUMBER+IM_VERSION_FIX_NUMBER;
}
|