aboutsummaryrefslogtreecommitdiff
path: root/src/jsonapi/jsonapi_relationship.c
blob: b88e74cc90f660e915c74f78b0dfe0bc0e3a3004 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "platform.h"
#include "gnunet_jsonapi_lib.h"


/**
 * Delete a JSON API relationship TODO
 *
 * @param res the JSON relationship
 */
void
GNUNET_JSONAPI_relationship_delete (struct GNUNET_JSONAPI_Relationship *relationship)
{
  GNUNET_assert (NULL != relationship);
  GNUNET_free (relationship);
}