MCPcopy Create free account
hub / github.com/cxasm/notepad-- / SetMultiple

Method SetMultiple

src/qscint/scintilla/lexlib/PropSetSimple.cpp:67–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65}
66
67void PropSetSimple::SetMultiple(const char *s) {
68 const char *eol = strchr(s, '\n');
69 while (eol) {
70 Set(s);
71 s = eol + 1;
72 eol = strchr(s, '\n');
73 }
74 Set(s);
75}
76
77const char *PropSetSimple::Get(const char *key) const {
78 mapss *props = PropsFromPointer(impl);

Callers 1

InternalLexOrFoldFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected