Return the length of the command. WARNING! This may return the wrong value if the command has an unquoted string parameter and GetUnprecedentedString or GetPossiblyQuotedString hasn't been called yet.
| 1381 | // Return the length of the command. |
| 1382 | // WARNING! This may return the wrong value if the command has an unquoted string parameter and GetUnprecedentedString or GetPossiblyQuotedString hasn't been called yet. |
| 1383 | size_t GCodeBuffer::DataLength() const noexcept |
| 1384 | { |
| 1385 | return PARSER_OPERATION(DataLength()); |
| 1386 | } |
| 1387 | |
| 1388 | void GCodeBuffer::PrintCommand(const StringRef& s) const noexcept |
| 1389 | { |
no outgoing calls
no test coverage detected