| 154 | } |
| 155 | |
| 156 | bool Command::equals(String name) const { |
| 157 | return equals(name.c_str()); |
| 158 | } |
| 159 | |
| 160 | bool Command::equals(const char* name) const { |
| 161 | if (cmdPointer && name) return cmd_name_equals(cmdPointer, name, strlen(name), cmdPointer->case_sensetive) == CMD_NAME_EQUALS; |
nothing calls this directly
no test coverage detected