gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
gbdk-support/png2hicolorgb/src/common.c
1
2 #include <stdbool.h>
3 #include <string.h>
4 #include <stdlib.h>
5 #include <stdint.h>
6
7 #include "common.h"
8
9 bool exit_error = false;
10 void set_exit_error(void) {
11 exit_error = true;
12 }
13
14 bool get_exit_error(void) {
15 return exit_error;
16 }
17
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.