/usr/include/libgcal/curl_debug_gcal.h is in libgcal-dev 0.9.6-3.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #ifndef __DEBUG_CURL_GCAL__
#define __DEBUG_CURL_GCAL__
/* Coments: this came straight from libcurl examples directory and
* will print information to stderr when executing curl_easy_perform.
* I'm not completely sure about its author, but I'm assuming that it uses
* the same license as curl itself (X11/MIT).
*
* I made only small changes in space and formating.
*
* Adenilson Cavalcanti
*/
/*****************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* $Id: debug.c,v 1.2 2006-10-20 21:26:10 bagder Exp $
*/
#include <curl/curl.h>
struct data_curl_debug {
char trace_ascii; /* 1 or 0 */
};
int curl_debug_gcal_trace(CURL *handle, curl_infotype type,
unsigned char *data, size_t size,
void *userp);
#endif
|