aboutsummaryrefslogtreecommitdiffstats
path: root/librecrypt_context_set_user_data.c
blob: f1be75fcf52aec96faede1a9d2a11b5187b755be (plain) (blame)
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
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST


void
librecrypt_context_set_user_data(LIBRECRYPT_CONTEXT *ctx, void *user)
{
	ctx->user_data = user;
}


#else


int
main(void)
{
	SET_UP_ALARM();
	INIT_RESOURCE_TEST();

	/* TODO test */

	STOP_RESOURCE_TEST();
	return 0;
}


#endif