ansilove

ANSI and ASCII art to PNG converter in C
Log | Files | Refs | README | LICENSE

config.h (470B)


      1 /*
      2  * config.h
      3  * Ansilove 4.1.6
      4  * https://www.ansilove.org
      5  *
      6  * Copyright (c) 2011-2022 Stefan Vogt, Brian Cassidy, and Frederic Cambus
      7  * All rights reserved.
      8  *
      9  * Ansilove 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 CONFIG_H
     16 #define CONFIG_H
     17 
     18 #include <stdint.h>
     19 
     20 /* configuration defines */
     21 #define VERSION "4.1.6"
     22 
     23 enum {
     24 	FONTS = 38,
     25 	TYPES = 7
     26 };
     27 
     28 #endif /* CONFIG_H */