diff options
Diffstat (limited to 'libcontacts_number_destroy.c')
-rw-r--r-- | libcontacts_number_destroy.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libcontacts_number_destroy.c b/libcontacts_number_destroy.c new file mode 100644 index 0000000..64b84cd --- /dev/null +++ b/libcontacts_number_destroy.c @@ -0,0 +1,11 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + + +void +libcontacts_number_destroy(struct libcontacts_number *this) +{ + free(this->context); + free(this->number); + DESTROY_ALL(this->unrecognised_data, free); +} |