aboutsummaryrefslogblamecommitdiffstats
path: root/libfonts_deallocate_encoding_mapping_entry_index_to_name.c
blob: ebabbf2584dd12b98a22f2610db04892a4bf2b17 (plain) (tree)

























                                                                                                                    
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST


void
libfonts_deallocate_encoding_mapping_entry_index_to_name(struct libfonts_encoding_mapping_entry_index_to_name *this)
{
	if (this) {
		free(this->target);
		this->target = NULL;
	}
}


#else


int
main(void)
{
	return 0; /* XXX add test */
}


#endif