mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
- Changes most `/* comments */` to `// comments` - Changes `/**` block comments consistently to `/*` - Adds consistent license comments to all files Also renames `T_POP_SET` to `T_Z80_SET`
26 lines
471 B
C
26 lines
471 B
C
/*
|
|
* 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 const chars[2]);
|
|
void opt_G(char const 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 // RGBDS_OPT_H
|