mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
14 lines
278 B
C
14 lines
278 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
// Assigning all sections a place
|
|
#ifndef RGBDS_LINK_SDAS_OBJ_H
|
|
#define RGBDS_LINK_SDAS_OBJ_H
|
|
|
|
#include <stdio.h>
|
|
|
|
struct FileStackNode;
|
|
|
|
void sdobj_ReadFile(struct FileStackNode const *fileName, FILE *file);
|
|
|
|
#endif // RGBDS_LINK_SDAS_OBJ_H
|