output.h (506B)
1 /* 2 * output.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 OUTPUT_H 16 #define OUTPUT_H 17 18 #include <gd.h> 19 20 struct ansilove_ctx; 21 struct ansilove_options; 22 23 int output(struct ansilove_ctx *, struct ansilove_options *, gdImagePtr); 24 25 #endif /* OUTPUT_H */