diff options
author | Garak <garakmon@gmail.com> | 2018-08-07 22:21:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-07 22:21:10 -0400 |
commit | 96ab357bedfb7d4e07a52b518e2bd02375b1f5f5 (patch) | |
tree | 92c8775f554e682a05c5995c7baa2d130ebd8aa3 /include/dynamic_placeholder_text_util.h | |
parent | 1ab872c68e951837b6925dbbdf25c4e8d0b63c82 (diff) | |
parent | 85ebd76cd03e1ee84f182585060b3a79b8653e85 (diff) |
Merge pull request #3 from pret/master
syncing with source repo
Diffstat (limited to 'include/dynamic_placeholder_text_util.h')
-rw-r--r-- | include/dynamic_placeholder_text_util.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/dynamic_placeholder_text_util.h b/include/dynamic_placeholder_text_util.h new file mode 100644 index 000000000..19bca71bb --- /dev/null +++ b/include/dynamic_placeholder_text_util.h @@ -0,0 +1,9 @@ +#ifndef GUARD_DYNAMIC_PLACEHOLDER_TEXT_UTIL_H +#define GUARD_DYNAMIC_PLACEHOLDER_TEXT_UTIL_H + +void DynamicPlaceholderTextUtil_Reset(void); +void DynamicPlaceholderTextUtil_SetPlaceholderPtr(u8 idx, const u8 *ptr); +u8 *DynamicPlaceholderTextUtil_ExpandPlaceholders(u8 *dest, const u8 *src); +const u8 *DynamicPlaceholderTextUtil_GetPlaceholderPtr(u8 idx); + +#endif //GUARD_DYNAMIC_PLACEHOLDER_TEXT_UTIL_H |