Use Suffix Extensions in Makefiles (doc, src/{arm,dht,integration,statistics}) for...
[oweals/gnunet.git] / src / jsonapi / jsonapi_relationship.c
1 #include "platform.h"
2 #include "gnunet_jsonapi_lib.h"
3
4
5 /**
6  * Delete a JSON API relationship TODO
7  *
8  * @param res the JSON relationship
9  */
10 void
11 GNUNET_JSONAPI_relationship_delete (struct GNUNET_JSONAPI_Relationship *relationship)
12 {
13   GNUNET_assert (NULL != relationship);
14   GNUNET_free (relationship);
15 }
16
17