Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/MikeMirzayanov/testlib
/ nextChar
Method
nextChar
testlib.h:1716–1722 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1714
}
1715
1716
int nextChar() {
1717
if (pos >= s.length()) {
1718
pos++;
1719
return EOFC;
1720
} else
1721
return s[pos++];
1722
}
1723
1724
void skipChar() {
1725
pos++;
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected