| 1754 | |
| 1755 | #ifdef EXV_USE_CURL |
| 1756 | size_t curlWriter(char* data, size_t size, size_t nmemb, std::string* writerData) { |
| 1757 | if (!writerData) |
| 1758 | return 0; |
| 1759 | writerData->append(data, size * nmemb); |
| 1760 | return size * nmemb; |
| 1761 | } |
| 1762 | #endif |
| 1763 | } // namespace Exiv2 |
nothing calls this directly
no outgoing calls
no test coverage detected