Swadge 2024 2.0.0
APIs to develop games for the Magfest Swadge
Loading...
Searching...
No Matches
fs_txt.h
Go to the documentation of this file.
1
27#ifndef _FS_TXT_H_
28#define _FS_TXT_H_
29
30char* loadTxt(const char* name, bool spiRam);
31void freeTxt(char* txtStr);
32
33#endif
char * loadTxt(const char *name, bool spiRam)
Load a TXT from ROM to RAM. TXTs placed in the assets_image folder before compilation will be automat...
Definition fs_txt.c:30
void freeTxt(char *txtStr)
Free an allocated TXT string.
Definition fs_txt.c:49