blob: 4860ea7393177babe6d80ba9579204c7e2177d19 (
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.6 2010/04/23 17:45:44 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 ".1"
#define IM_VERSION_FIX_NUMBER 1
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;
}
|