diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-11-16 22:44:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-16 22:44:13 +0100 |
commit | 6cde380cee74a136710006d6d05c5dcccc032a39 (patch) | |
tree | ba7bc1d19f4f735773714548ba86c16ce8c17c6d /modules/mono/utils/string_utils.h | |
parent | 98caeb635c2e4d48e0d6d6dbd82af183ab83f894 (diff) | |
parent | 8cbe4a3db49f61992a978d2311455377bb3a9656 (diff) |
Merge pull request #33603 from neikeq/ばか
Mono/C#: WebAssembly and initial AOT support
Diffstat (limited to 'modules/mono/utils/string_utils.h')
-rw-r--r-- | modules/mono/utils/string_utils.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/mono/utils/string_utils.h b/modules/mono/utils/string_utils.h index 565b9bb644..e7f02955bd 100644 --- a/modules/mono/utils/string_utils.h +++ b/modules/mono/utils/string_utils.h @@ -56,5 +56,7 @@ Error read_all_file_utf8(const String &p_path, String &r_content); String str_format(const char *p_format, ...) _PRINTF_FORMAT_ATTRIBUTE_1_2; String str_format(const char *p_format, va_list p_list) _PRINTF_FORMAT_ATTRIBUTE_1_0; +char *str_format_new(const char *p_format, ...) _PRINTF_FORMAT_ATTRIBUTE_1_2; +char *str_format_new(const char *p_format, va_list p_list) _PRINTF_FORMAT_ATTRIBUTE_1_0; #endif // STRING_FORMAT_H |