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

Method SetMultiple

scintilla/lexlib/PropSetSimple.cxx:71–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69}
70
71void PropSetSimple::SetMultiple(const char *s) {
72 const char *eol = strchr(s, '\n');
73 while (eol) {
74 Set(s);
75 s = eol + 1;
76 eol = strchr(s, '\n');
77 }
78 Set(s);
79}
80
81const char *PropSetSimple::Get(const char *key) const {
82 mapss *props = static_cast<mapss *>(impl);

Callers 1

InternalLexOrFoldFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected