aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/cmd_rand.c
blob: d5f90e1699793339a1fef6ddb244c0f0552974b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "cmd_rand.h"


void *cmd_rand(void *data)
{
	char *ret = NULL;

	const int buf_size = 128;
	char buf[buf_size+1];

	printf("RAND\n");


	snprintf(buf, buf_size, "4");
	ret = alloc_new_str(buf);

	return ret;
}