MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / InsertCString

Method InsertCString

scintilla/src/Document.cxx:1045–1047  ·  view source on GitHub ↗

* Insert a null terminated string. */

Source from the content-addressed store, hash-verified

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

Callers 5

MoveSelectedLinesMethod · 0.80
LinesSplitMethod · 0.80
NewLineMethod · 0.80
DropAtMethod · 0.80
WndProcMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected