MCPcopy Create free account
hub / github.com/JoaoLopesF/RemoteDebug / isCRLF

Method isCRLF

src/RemoteDebug.cpp:1977–1981  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1975// Is CR or LF ?
1976
1977boolean RemoteDebug::isCRLF(char character) {
1978
1979 return (character == '\r' || character == '\n');
1980
1981}
1982
1983// Expand characters as CR/LF to \\r, \\n
1984// TODO: make this for another chars not printable

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected