[#BloombergLP-bdlb-LiteralUtil-createQuotedEscapedCString-00] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlb.adoc[bdlb]::xref:BloombergLP/bdlb/LiteralUtil.adoc[LiteralUtil]::createQuotedEscapedCString :relfileprefix: ../../../ :mrdocs: Load into `result` a quoted, escaped C/C++ string literal of `input`. == Synopsis Declared in `<bdlb_literalutil.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static void createQuotedEscapedCString( xref:bsl/string.adoc[bsl::string]* result, std::string_view const& input); ---- == Description Load into the specified `result` string the `"` delimited and escaped C/C++ string literal equivalent representing the same value as that of the specified `input` string. When the C string literal equivalent is translated by a compiler having C‐compatible string literals, it will result in a string identical to the `input` string. Note that this code uses the (ASCII) '' character, rather than Unicode code points for escapes. == Parameters [cols="1,4"] |=== | Name| Description | *result* | string to receive the quoted, escaped literal | *input* | string value to represent as a C/C++ literal |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#