12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef HEADER_LIBTEST_TESTTRACE_H
- #define HEADER_LIBTEST_TESTTRACE_H
- struct libtest_trace_cfg {
- int tracetime;
- int nohex;
- };
- extern struct libtest_trace_cfg libtest_debug_config;
- int libtest_debug_cb(CURL *handle, curl_infotype type,
- unsigned char *data, size_t size,
- void *userp);
- #endif
|