mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
21 lines
391 B
C++
21 lines
391 B
C++
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef RGBDS_OPT_H
|
|
#define RGBDS_OPT_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
void opt_B(char const chars[2]);
|
|
void opt_G(char const chars[4]);
|
|
void opt_P(uint8_t padByte);
|
|
void opt_Q(uint8_t precision);
|
|
void opt_L(bool optimize);
|
|
void opt_W(char *flag);
|
|
void opt_Parse(char *option);
|
|
|
|
void opt_Push(void);
|
|
void opt_Pop(void);
|
|
|
|
#endif // RGBDS_OPT_H
|