mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
18 lines
295 B
C++
18 lines
295 B
C++
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef RGBDS_LINK_PATCH_H
|
|
#define RGBDS_LINK_PATCH_H
|
|
|
|
/*
|
|
* Checks all assertions
|
|
* @return true if assertion failed
|
|
*/
|
|
void patch_CheckAssertions();
|
|
|
|
/*
|
|
* Applies all SECTIONs' patches to them
|
|
*/
|
|
void patch_ApplyPatches();
|
|
|
|
#endif // RGBDS_LINK_PATCH_H
|