Fast and reasonably complete (framebuffer) terminal emulator (Zig fork)

Do not allow compiling as C++ or pre-C99

mintsuki 3327fa84 0d41551c

Changed files
+16
backends
+8
backends/fb.c
···
* POSSIBILITY OF SUCH DAMAGE.
*/
+
#ifdef __cplusplus
+
#error "Please do not compile Flanterm as C++ code! Flanterm should be compiled as C99 or newer."
+
#endif
+
+
#ifndef __STDC_VERSION__
+
#error "Flanterm must be compiled as C99 or newer."
+
#endif
+
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
+8
flanterm.c
···
* POSSIBILITY OF SUCH DAMAGE.
*/
+
#ifdef __cplusplus
+
#error "Please do not compile Flanterm as C++ code! Flanterm should be compiled as C99 or newer."
+
#endif
+
+
#ifndef __STDC_VERSION__
+
#error "Flanterm must be compiled as C99 or newer."
+
#endif
+
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>