Append string `str` having `len` characters (or `kInvalidIndex` if it's null terminated).
| 192 | |
| 193 | //! Append string `str` having `len` characters (or `kInvalidIndex` if it's null terminated). |
| 194 | ASMJIT_INLINE Error appendString(const char* str, size_t len = Globals::kInvalidIndex) noexcept { return _opString(kStringOpAppend, str, len); } |
| 195 | //! Append a formatted string `fmt`. |
| 196 | ASMJIT_API Error appendFormat(const char* fmt, ...) noexcept; |
| 197 | //! Append a formatted string `fmt` (va_list version). |
no outgoing calls
no test coverage detected