]> andersk Git - libfaim.git/blame - aim_meta.c
- Tue May 30 22:32:31 UTC 2000
[libfaim.git] / aim_meta.c
CommitLineData
0cc57340 1/*
2 * Administrative things for libfaim.
3 *
4 *
5 */
6
7#include <faim/aim.h>
8#include <aim_buildcode.h> /* generated by mkbuildinfo.sh */
9
10long long aim_getbuilddate(void)
11{
12 return AIM_BUILDDATE;
13}
14
15long long aim_getbuildtime(void)
16{
17 return AIM_BUILDTIME;
18}
19
20char *aim_getbuildstring(void)
21{
22 static char string[100];
23
24 snprintf(string, 99, "%d.%d.%d-%Ld%Ld",
25 FAIM_VERSION_MAJOR,
26 FAIM_VERSION_MINOR,
27 FAIM_VERSION_MINORMINOR,
28 aim_getbuilddate(),
29 aim_getbuildtime());
30 return string;
31}
32
This page took 0.312469 seconds and 5 git commands to generate.