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

Method SetFillUpChars

scintilla/src/AutoComplete.cxx:82–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82void AutoComplete::SetFillUpChars(const char *fillUpChars_) {
83 strncpy(fillUpChars, fillUpChars_, sizeof(fillUpChars));
84 fillUpChars[sizeof(fillUpChars) - 1] = '\0';
85}
86
87bool AutoComplete::IsFillUpChar(char ch) {
88 return ch && strchr(fillUpChars, ch);

Callers 1

WndProcMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected