drawchar.h (530B)
1 /* 2 * drawchar.h 3 * libansilove 1.3.1 4 * https://www.ansilove.org 5 * 6 * Copyright (c) 2011-2022 Stefan Vogt, Brian Cassidy, and Frederic Cambus 7 * All rights reserved. 8 * 9 * libansilove is licensed under the BSD 2-Clause license. 10 * See LICENSE file for details. 11 * 12 * SPDX-License-Identifier: BSD-2-Clause 13 */ 14 15 #ifndef DRAWCHAR_H 16 #define DRAWCHAR_H 17 18 #include <stdint.h> 19 #include <gd.h> 20 21 void drawchar(gdImagePtr, const uint8_t *, uint32_t, uint32_t, uint32_t, 22 uint32_t, uint32_t, uint32_t, uint8_t); 23 24 #endif /* DRAWCHAR_H */