insert any bytes in str into set
| 84 | |
| 85 | // insert any bytes in str into set |
| 86 | void InsertString(const char* str) |
| 87 | { |
| 88 | while (*str) |
| 89 | { |
| 90 | Insert(*str); |
| 91 | ++str; |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | // insert any bytes in str into set |
| 96 | void InsertBytes(const char* begin, size_t length) |
nothing calls this directly
no outgoing calls
no test coverage detected