standard pointer
| 178 | |
| 179 | //standard pointer |
| 180 | void IRsend::sendPronto_P(const char *str, int_fast8_t aNumberOfRepeats) { |
| 181 | size_t len = strlen_P(str); |
| 182 | char work[len + 1]; |
| 183 | strcpy_P(work, str); |
| 184 | sendPronto(work, aNumberOfRepeats); |
| 185 | } |
| 186 | #endif |
| 187 | |
| 188 | /* |
nothing calls this directly
no outgoing calls
no test coverage detected