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

Method SetStopChars

scintilla/src/AutoComplete.cxx:73–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73void AutoComplete::SetStopChars(const char *stopChars_) {
74 strncpy(stopChars, stopChars_, sizeof(stopChars));
75 stopChars[sizeof(stopChars) - 1] = '\0';
76}
77
78bool AutoComplete::IsStopChar(char ch) {
79 return ch && strchr(stopChars, ch);

Callers 1

WndProcMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected