MCPcopy Create free account
hub / github.com/RobTillaart/Arduino / existTab

Method existTab

libraries/LineFormatter/LineFormatter.cpp:191–198  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

189
190
191bool LineFormatter::existTab(uint8_t pos)
192{
193 for (uint8_t i = 0; i < _tabCount; i++)
194 {
195 if (_tabStop[i] == pos) return true;
196 }
197 return false;
198}
199
200
201void LineFormatter::tab(uint8_t n)

Callers 1

unittestFunction · 0.80

Calls

no outgoing calls

Tested by 1

unittestFunction · 0.64