* Memcpy and update length wrapper */
| 489 | * Memcpy and update length wrapper |
| 490 | */ |
| 491 | static inline int wrap_copy_and_update(char** dest_p, const char* src, int cpy_len, |
| 492 | int* dest_len) |
| 493 | { |
| 494 | memcpy(*dest_p + *dest_len, src, cpy_len); |
| 495 | *dest_len += cpy_len; |
| 496 | |
| 497 | return 0; |
| 498 | } |
| 499 | |
| 500 | /* |
| 501 | * Function that jumps over the first row of the message |
no outgoing calls
no test coverage detected