////////////////////////////////////// TAB
| 136 | // TAB |
| 137 | // |
| 138 | bool LineFormatter::addTab(uint8_t pos) |
| 139 | { |
| 140 | if (pos == 0) return false; |
| 141 | // full ? |
| 142 | if (_tabCount >= MAX_TAB_STOPS) return false; |
| 143 | // prevent doubles. |
| 144 | if (existTab(pos)) return false; |
| 145 | |
| 146 | _tabStop[_tabCount] = pos; |
| 147 | _tabCount++; |
| 148 | return true; |
| 149 | } |
| 150 | |
| 151 | |
| 152 | bool LineFormatter::addRelTab(uint8_t n) |