We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e080ba1 commit 82278c7Copy full SHA for 82278c7
1 file changed
Zend/zend_smart_str.h
@@ -180,6 +180,7 @@ static zend_always_inline void smart_str_append(smart_str *dest, const zend_stri
180
{
181
smart_str_append_ex(dest, src, false);
182
}
183
+#define smart_str_append_literal(dest, src) smart_str_appendl_ex(dest, "" src, sizeof(src)-1, false);
184
static zend_always_inline void smart_str_appendc(smart_str *dest, char ch)
185
186
smart_str_appendc_ex(dest, ch, false);
0 commit comments