blob: e1c7de5247622d61f84556b51f7953d047f71c16 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "cmd_version.h"
void *cmd_version(void *data)
{
char *ret = NULL;
const int buf_size = 128;
char buf[buf_size+1];
printf("VERSION\n");
snprintf(buf, buf_size, "VERSION:0.0.7" " DATE:" VERSION_DATE " COMMIT:" VERSION_COMMIT "");
ret = alloc_new_str(buf);
return ret;
}
|