ref: b3304ae1ac7fef3d1551315f3cb1d60db19bbf77
dir: /include/asm/opt.h/
/* * This file is part of RGBDS. * * Copyright (c) 2021, Eldred Habert and RGBDS contributors. * * SPDX-License-Identifier: MIT */ #ifndef RGBDS_OPT_H #define RGBDS_OPT_H #include <stdbool.h> #include <stdint.h> void opt_B(char chars[2]); void opt_G(char chars[4]); void opt_P(uint8_t fill); void opt_L(bool optimize); void opt_W(char const *flag); void opt_Parse(char const *option); void opt_Push(void); void opt_Pop(void); #endif