| 65 | } |
| 66 | |
| 67 | void 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 | |
| 77 | const char *PropSetSimple::Get(const char *key) const { |
| 78 | mapss *props = PropsFromPointer(impl); |