11 lines
304 B
C
11 lines
304 B
C
// This file is part of the CircuitPython project: https://circuitpython.org
|
|
//
|
|
// SPDX-FileCopyrightText: Copyright (c) 2019 Scott Shawcroft for Adafruit Industries
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include "py/objnamedtuple.h"
|
|
|
|
extern const mp_obj_namedtuple_type_t fontio_glyph_type;
|