1043
str->append("\\\\", sizeof("\\\\"));
1043
str->append("\\\\", sizeof("\\\\")-1);
1046
str->append("\\0", sizeof("\\0"));
1046
str->append("\\0", sizeof("\\0")-1);
1049
str->append("\\'", sizeof("\\'"));
1049
str->append("\\'", sizeof("\\'")-1);
1052
str->append("\\n", sizeof("\\n"));
1052
str->append("\\n", sizeof("\\n")-1);
1055
str->append("\\r", sizeof("\\r"));
1055
str->append("\\r", sizeof("\\r")-1);
1057
1057
case '\032': // Ctrl-Z
1058
str->append("\\Z", sizeof("\\Z"));
1058
str->append("\\Z", sizeof("\\Z")-1);
1061
1061
str->append(c);