Implement inline palette spec parsing

This commit is contained in:
ISSOtm
2022-04-09 13:47:38 +02:00
committed by Eldred Habert
parent cc27169ecd
commit 6b0cab32a6
5 changed files with 179 additions and 2 deletions

16
include/gfx/pal_spec.hpp Normal file
View File

@@ -0,0 +1,16 @@
/*
* This file is part of RGBDS.
*
* Copyright (c) 2022, Eldred Habert and RGBDS contributors.
*
* SPDX-License-Identifier: MIT
*/
#ifndef RGBDS_GFX_PAL_SPEC_HPP
#define RGBDS_GFX_PAL_SPEC_HPP
#include <string_view>
void parseInlinePalSpec(char const * const arg);
#endif /* RGBDS_GFX_PAL_SPEC_HPP */