* Insert a null terminated string. */
| 1043 | * Insert a null terminated string. |
| 1044 | */ |
| 1045 | bool Document::InsertCString(int position, const char *s) { |
| 1046 | return InsertString(position, s, static_cast<int>(s ? strlen(s) : 0)); |
| 1047 | } |
| 1048 | |
| 1049 | void Document::DelChar(int pos) { |
| 1050 | DeleteChars(pos, LenChar(pos)); |
no outgoing calls
no test coverage detected