| 121 | } |
| 122 | |
| 123 | static void |
| 124 | ltrim(String &target) |
| 125 | { |
| 126 | String::size_type p(target.find_first_not_of(' ')); |
| 127 | |
| 128 | if (p != target.npos) { |
| 129 | target.erase(0, p); |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | static TSMLoc |
| 134 | nextDuplicate(TSMBuffer buffer, TSMLoc hdr, TSMLoc field) |