blob: 36ec493536cad875ae44dccad7df004bb0635d3a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
void
libparsepcf_destroy_preparsed_font(struct libparsepcf_font *font)
{
free(font->_tables);
memset(font, 0, sizeof(*font));
}
|