You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
falk-werner_webfuse/lib/jsonrpc/impl/method.c

28 lines
615 B

#include "jsonrpc/impl/method.h"
#include <stdlib.h>
#include <string.h>
struct jsonrpc_method * jsonrpc_impl_method_create(
char const * method_name,
jsonrpc_method_invoke_fn * invoke,
void * user_data)
{
struct jsonrpc_method * method = malloc(sizeof(struct jsonrpc_method));
if (NULL != method)
{
method->next = NULL;
method->name = strdup(method_name);
method->invoke = invoke;
method->user_data = user_data;
}
return method;
}
void jsonrpc_impl_method_dispose(
struct jsonrpc_method * method)
{
free(method->name);
free(method);
}