Escape special characters for C++ string literals.
(s: str)
| 623 | |
| 624 | |
| 625 | def _escape_cpp_string_literal(s: str) -> str: |
| 626 | """Escape special characters for C++ string literals.""" |
| 627 | return s.translate(_CPP_ESCAPE_TABLE) |
| 628 | |
| 629 | |
| 630 | def _decorate_with_tvm_ffi(source: str, functions: Mapping[str, str]) -> str: |
no outgoing calls
no test coverage detected