blob: d57ac23561dd650805a55f00bfa00a3e4ebc4f1a (
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.9" " DATE:" VERSION_DATE " COMMIT:" VERSION_COMMIT "");
ret = alloc_new_str(buf);
return ret;
}
|