Macros | Typedefs | Functions | Variables
typecheck-gcc.h File Reference

Go to the source code of this file.

Macros

#define _curl_callback_compatible(func, type)
 
#define _curl_is_any_ptr(expr)   (sizeof(expr) == sizeof(void *))
 
#define _curl_is_arr(expr, type)
 
#define _curl_is_cb_data(expr)   _curl_is_any_ptr(expr)
 
#define _curl_is_cb_data_option(option)
 
#define _curl_is_certinfo_info(info)   ((info) == CURLINFO_CERTINFO)
 
#define _curl_is_conv_cb(expr)
 
#define _curl_is_conv_cb_option(option)
 
#define _curl_is_debug_cb(expr)
 
#define _curl_is_double_info(info)   (CURLINFO_DOUBLE < (info) && (info) < CURLINFO_SLIST)
 
#define _curl_is_error_buffer(expr)
 
#define _curl_is_FILE(expr)
 
#define _curl_is_ioctl_cb(expr)
 
#define _curl_is_long(expr)
 
#define _curl_is_long_info(info)   (CURLINFO_LONG < (info) && (info) < CURLINFO_DOUBLE)
 
#define _curl_is_long_option(option)   (0 < (option) && (option) < CURLOPTTYPE_OBJECTPOINT)
 
#define _curl_is_NULL(expr)   (__builtin_types_compatible_p(__typeof__(expr), __typeof__(NULL)))
 
#define _curl_is_off_t(expr)   (__builtin_types_compatible_p(__typeof__(expr), curl_off_t))
 
#define _curl_is_off_t_info(info)   (CURLINFO_OFF_T < (info))
 
#define _curl_is_off_t_option(option)   ((option) > CURLOPTTYPE_OFF_T)
 
#define _curl_is_opensocket_cb(expr)
 
#define _curl_is_postfields(expr)
 
#define _curl_is_postfields_option(option)
 
#define _curl_is_progress_cb(expr)
 
#define _curl_is_ptr(expr, type)
 
#define _curl_is_read_cb(expr)
 
#define _curl_is_seek_cb(expr)
 
#define _curl_is_slist_info(info)   (((info) == CURLINFO_SSL_ENGINES) || ((info) == CURLINFO_COOKIELIST))
 
#define _curl_is_slist_option(option)
 
#define _curl_is_socket_info(info)   (CURLINFO_SOCKET < (info) && (info) < CURLINFO_OFF_T)
 
#define _curl_is_sockopt_cb(expr)
 
#define _curl_is_ssl_ctx_cb(expr)
 
#define _curl_is_string(expr)
 
#define _curl_is_string_info(info)   (CURLINFO_STRING < (info) && (info) < CURLINFO_LONG)
 
#define _curl_is_string_option(option)
 
#define _curl_is_tlssessioninfo_info(info)   (((info) == CURLINFO_TLS_SSL_PTR) || ((info) == CURLINFO_TLS_SESSION))
 
#define _curl_is_write_cb(expr)
 
#define _curl_is_write_cb_option(option)
 
#define _CURL_WARNING(id, message)
 
#define curl_easy_getinfo(handle, info, arg)
 
#define curl_easy_setopt(handle, option, value)
 
#define curl_multi_setopt(handle, opt, param)   curl_multi_setopt(handle,opt,param)
 
#define curl_share_setopt(share, opt, param)   curl_share_setopt(share,opt,param)
 

Typedefs

typedef CURLcode(* _curl_conv_callback1) (char *, size_t length)
 
typedef CURLcode(* _curl_conv_callback2) (const char *, size_t length)
 
typedef CURLcode(* _curl_conv_callback3) (void *, size_t length)
 
typedef CURLcode(* _curl_conv_callback4) (const void *, size_t length)
 
typedef int(* _curl_debug_callback1) (CURL *, curl_infotype, char *, size_t, void *)
 
typedef int(* _curl_debug_callback2) (CURL *, curl_infotype, char *, size_t, const void *)
 
typedef int(* _curl_debug_callback3) (CURL *, curl_infotype, const char *, size_t, void *)
 
typedef int(* _curl_debug_callback4) (CURL *, curl_infotype, const char *, size_t, const void *)
 
typedef int(* _curl_debug_callback5) (CURL *, curl_infotype, unsigned char *, size_t, void *)
 
typedef int(* _curl_debug_callback6) (CURL *, curl_infotype, unsigned char *, size_t, const void *)
 
typedef int(* _curl_debug_callback7) (CURL *, curl_infotype, const unsigned char *, size_t, void *)
 
typedef int(* _curl_debug_callback8) (CURL *, curl_infotype, const unsigned char *, size_t, const void *)
 
typedef curlioerr(* _curl_ioctl_callback1) (CURL *, int, void *)
 
typedef curlioerr(* _curl_ioctl_callback2) (CURL *, int, const void *)
 
typedef curlioerr(* _curl_ioctl_callback3) (CURL *, curliocmd, void *)
 
typedef curlioerr(* _curl_ioctl_callback4) (CURL *, curliocmd, const void *)
 
typedef curl_socket_t(* _curl_opensocket_callback1) (void *, curlsocktype, struct curl_sockaddr *)
 
typedef curl_socket_t(* _curl_opensocket_callback2) (void *, curlsocktype, const struct curl_sockaddr *)
 
typedef curl_socket_t(* _curl_opensocket_callback3) (const void *, curlsocktype, struct curl_sockaddr *)
 
typedef curl_socket_t(* _curl_opensocket_callback4) (const void *, curlsocktype, const struct curl_sockaddr *)
 
typedef int(* _curl_progress_callback1) (void *, double, double, double, double)
 
typedef int(* _curl_progress_callback2) (const void *, double, double, double, double)
 
typedef size_t(* _curl_read_callback3) (char *, size_t, size_t, FILE *)
 
typedef size_t(* _curl_read_callback4) (void *, size_t, size_t, void *)
 
typedef size_t(* _curl_read_callback5) (void *, size_t, size_t, const void *)
 
typedef size_t(* _curl_read_callback6) (void *, size_t, size_t, FILE *)
 
typedef CURLcode(* _curl_seek_callback1) (void *, curl_off_t, int)
 
typedef CURLcode(* _curl_seek_callback2) (const void *, curl_off_t, int)
 
typedef int(* _curl_sockopt_callback1) (void *, curl_socket_t, curlsocktype)
 
typedef int(* _curl_sockopt_callback2) (const void *, curl_socket_t, curlsocktype)
 
typedef CURLcode(* _curl_ssl_ctx_callback1) (CURL *, void *, void *)
 
typedef CURLcode(* _curl_ssl_ctx_callback2) (CURL *, void *, const void *)
 
typedef CURLcode(* _curl_ssl_ctx_callback3) (CURL *, const void *, void *)
 
typedef CURLcode(* _curl_ssl_ctx_callback4) (CURL *, const void *, const void *)
 
typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback5
 
typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback6
 
typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback7
 
typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback8
 
typedef size_t(* _curl_write_callback1) (const char *, size_t, size_t, void *)
 
typedef size_t(* _curl_write_callback2) (const char *, size_t, size_t, const void *)
 
typedef size_t(* _curl_write_callback3) (const char *, size_t, size_t, FILE *)
 
typedef size_t(* _curl_write_callback4) (const void *, size_t, size_t, void *)
 
typedef size_t(* _curl_write_callback5) (const void *, size_t, size_t, const void *)
 
typedef size_t(* _curl_write_callback6) (const void *, size_t, size_t, FILE *)
 

Functions

 _CURL_WARNING (_curl_easy_setopt_err_long,"curl_easy_setopt expects a long argument for this option") _CURL_WARNING(_curl_easy_setopt_err_curl_off_t
 
curl_easy_setopt expects a curl_off_t argument for this option _CURL_WARNING (_curl_easy_setopt_err_string,"curl_easy_setopt expects a ""string ('char *' or char[]) argument for this option") _CURL_WARNING(_curl_easy_setopt_err_write_callback
 
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option _CURL_WARNING (_curl_easy_setopt_err_read_cb,"curl_easy_setopt expects a curl_read_callback argument for this option") _CURL_WARNING(_curl_easy_setopt_err_ioctl_cb
 
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option _CURL_WARNING (_curl_easy_setopt_err_sockopt_cb,"curl_easy_setopt expects a curl_sockopt_callback argument for this option") _CURL_WARNING(_curl_easy_setopt_err_opensocket_cb
 
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option _CURL_WARNING (_curl_easy_setopt_err_progress_cb,"curl_easy_setopt expects a curl_progress_callback argument for this option") _CURL_WARNING(_curl_easy_setopt_err_debug_cb
 
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option _CURL_WARNING (_curl_easy_setopt_err_ssl_ctx_cb,"curl_easy_setopt expects a curl_ssl_ctx_callback argument for this option") _CURL_WARNING(_curl_easy_setopt_err_conv_cb
 
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option _CURL_WARNING (_curl_easy_setopt_err_seek_cb,"curl_easy_setopt expects a curl_seek_callback argument for this option") _CURL_WARNING(_curl_easy_setopt_err_cb_data
 
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option _CURL_WARNING (_curl_easy_setopt_err_error_buffer,"curl_easy_setopt expects a ""char buffer of CURL_ERROR_SIZE as argument for this option") _CURL_WARNING(_curl_easy_setopt_err_FILE
 
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE *argument for this option _CURL_WARNING (_curl_easy_setopt_err_postfields,"curl_easy_setopt expects a 'void *' or 'char *' argument for this option") _CURL_WARNING(_curl_easy_setopt_err_curl_httpost
 
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE *argument for this option curl_easy_setopt expects a struct curl_httppost *argument for this option _CURL_WARNING (_curl_easy_setopt_err_curl_mimepost,"curl_easy_setopt expects a 'curl_mime *' ""argument for this option") _CURL_WARNING(_curl_easy_setopt_err_curl_slist
 
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE *argument for this option curl_easy_setopt expects a struct curl_httppost *argument for this option curl_easy_setopt expects a struct curl_slist *argument for this option _CURL_WARNING (_curl_easy_setopt_err_CURLSH,"curl_easy_setopt expects a CURLSH* argument for this option") _CURL_WARNING(_curl_easy_getinfo_err_string
 
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE *argument for this option curl_easy_setopt expects a struct curl_httppost *argument for this option curl_easy_setopt expects a struct curl_slist *argument for this option curl_easy_getinfo expects a pointer to char *for this info _CURL_WARNING (_curl_easy_getinfo_err_long,"curl_easy_getinfo expects a pointer to long for this info") _CURL_WARNING(_curl_easy_getinfo_err_double
 
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE *argument for this option curl_easy_setopt expects a struct curl_httppost *argument for this option curl_easy_setopt expects a struct curl_slist *argument for this option curl_easy_getinfo expects a pointer to char *for this info curl_easy_getinfo expects a pointer to double for this info _CURL_WARNING (_curl_easy_getinfo_err_curl_slist,"curl_easy_getinfo expects a pointer to 'struct curl_slist *' for this info") _CURL_WARNING(_curl_easy_getinfo_err_curl_tlssesssioninfo
 
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE *argument for this option curl_easy_setopt expects a struct curl_httppost *argument for this option curl_easy_setopt expects a struct curl_slist *argument for this option curl_easy_getinfo expects a pointer to char *for this info curl_easy_getinfo expects a pointer to double for this info curl_easy_getinfo expects a pointer to struct curl_tlssessioninfo *for this info _CURL_WARNING (_curl_easy_getinfo_err_curl_certinfo,"curl_easy_getinfo expects a pointer to ""'struct curl_certinfo *' for this info") _CURL_WARNING(_curl_easy_getinfo_err_curl_socket
 
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE *argument for this option curl_easy_setopt expects a struct curl_httppost *argument for this option curl_easy_setopt expects a struct curl_slist *argument for this option curl_easy_getinfo expects a pointer to char *for this info curl_easy_getinfo expects a pointer to double for this info curl_easy_getinfo expects a pointer to struct curl_tlssessioninfo *for this info curl_easy_getinfo expects a pointer to curl_socket_t for this info _CURL_WARNING (_curl_easy_getinfo_err_curl_off_t,"curl_easy_getinfo expects a pointer to curl_off_t for this info") typedef size_t(*_curl_read_callback1)(char *
 

Variables

curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE *argument for this option curl_easy_setopt expects a struct curl_httppost *argument for this option curl_easy_setopt expects a struct curl_slist *argument for this option curl_easy_getinfo expects a pointer to char *for this info curl_easy_getinfo expects a pointer to double for this info curl_easy_getinfo expects a pointer to struct curl_tlssessioninfo *for this info curl_easy_getinfo expects a pointer to curl_socket_t for this info void *typedef size_t(* _curl_read_callback2 )(char *, size_t, size_t, const void *)
 
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE *argument for this option curl_easy_setopt expects a struct curl_httppost *argument for this option curl_easy_setopt expects a struct curl_slist *argument for this option curl_easy_getinfo expects a pointer to char *for this info curl_easy_getinfo expects a pointer to double for this info curl_easy_getinfo expects a pointer to struct curl_tlssessioninfo *for this info curl_easy_getinfo expects a pointer to curl_socket_t for this info size_t
 

Macro Definition Documentation

#define _curl_callback_compatible (   func,
  type 
)
Value:
(__builtin_types_compatible_p(__typeof__(func), type) || \
__builtin_types_compatible_p(__typeof__(func) *, type))
#define _curl_is_any_ptr (   expr)    (sizeof(expr) == sizeof(void *))
#define _curl_is_arr (   expr,
  type 
)
Value:
(_curl_is_ptr((expr), type) || \
__builtin_types_compatible_p(__typeof__(expr), type []))
#define _curl_is_ptr(expr, type)
#define _curl_is_cb_data (   expr)    _curl_is_any_ptr(expr)
#define _curl_is_cb_data_option (   option)
Value:
((option) == CURLOPT_CHUNK_DATA || \
(option) == CURLOPT_CLOSESOCKETDATA || \
(option) == CURLOPT_DEBUGDATA || \
(option) == CURLOPT_FNMATCH_DATA || \
(option) == CURLOPT_HEADERDATA || \
(option) == CURLOPT_INTERLEAVEDATA || \
(option) == CURLOPT_IOCTLDATA || \
(option) == CURLOPT_OPENSOCKETDATA || \
(option) == CURLOPT_PRIVATE || \
(option) == CURLOPT_PROGRESSDATA || \
(option) == CURLOPT_READDATA || \
(option) == CURLOPT_SEEKDATA || \
(option) == CURLOPT_SOCKOPTDATA || \
(option) == CURLOPT_SSH_KEYDATA || \
(option) == CURLOPT_SSL_CTX_DATA || \
(option) == CURLOPT_WRITEDATA || \
0)
#define _curl_is_certinfo_info (   info)    ((info) == CURLINFO_CERTINFO)
#define _curl_is_conv_cb (   expr)
Value:
(_curl_is_NULL(expr) || \
CURLcode(* _curl_conv_callback1)(char *, size_t length)
CURLcode(* _curl_conv_callback3)(void *, size_t length)
CURLcode(* curl_conv_callback)(char *buffer, size_t length)
Definition: curl.h:657
#define _curl_callback_compatible(func, type)
CURLcode(* _curl_conv_callback2)(const char *, size_t length)
#define _curl_is_NULL(expr)
CURLcode(* _curl_conv_callback4)(const void *, size_t length)

Definition at line 661 of file typecheck-gcc.h.

#define _curl_is_conv_cb_option (   option)
Value:
((option) == CURLOPT_CONV_TO_NETWORK_FUNCTION || \
(option) == CURLOPT_CONV_FROM_NETWORK_FUNCTION || \
(option) == CURLOPT_CONV_FROM_UTF8_FUNCTION)
#define _curl_is_debug_cb (   expr)
Value:
(_curl_is_NULL(expr) || \
int(* _curl_debug_callback3)(CURL *, curl_infotype, const char *, size_t, void *)
int(* _curl_debug_callback8)(CURL *, curl_infotype, const unsigned char *, size_t, const void *)
int(* _curl_debug_callback6)(CURL *, curl_infotype, unsigned char *, size_t, const void *)
#define _curl_callback_compatible(func, type)
int(* _curl_debug_callback2)(CURL *, curl_infotype, char *, size_t, const void *)
int(* curl_debug_callback)(CURL *handle, curl_infotype type, char *data, size_t size, void *userptr)
Definition: curl.h:441
int(* _curl_debug_callback7)(CURL *, curl_infotype, const unsigned char *, size_t, void *)
int(* _curl_debug_callback4)(CURL *, curl_infotype, const char *, size_t, const void *)
int(* _curl_debug_callback5)(CURL *, curl_infotype, unsigned char *, size_t, void *)
int(* _curl_debug_callback1)(CURL *, curl_infotype, char *, size_t, void *)
#define _curl_is_NULL(expr)

Definition at line 598 of file typecheck-gcc.h.

#define _curl_is_double_info (   info)    (CURLINFO_DOUBLE < (info) && (info) < CURLINFO_SLIST)
#define _curl_is_error_buffer (   expr)
Value:
(_curl_is_NULL(expr) || \
__builtin_types_compatible_p(__typeof__(expr), char *) || \
__builtin_types_compatible_p(__typeof__(expr), char[]))
#define _curl_is_NULL(expr)
#define _curl_is_FILE (   expr)
Value:
(_curl_is_NULL(expr) || \
(__builtin_types_compatible_p(__typeof__(expr), FILE *)))
#define _curl_is_NULL(expr)
#define _curl_is_ioctl_cb (   expr)
Value:
(_curl_is_NULL(expr) || \
curlioerr(* _curl_ioctl_callback2)(CURL *, int, const void *)
curlioerr(* _curl_ioctl_callback4)(CURL *, curliocmd, const void *)
curlioerr(* _curl_ioctl_callback1)(CURL *, int, void *)
#define _curl_callback_compatible(func, type)
curlioerr(* curl_ioctl_callback)(CURL *handle, int cmd, void *clientp)
Definition: curl.h:408
curlioerr(* _curl_ioctl_callback3)(CURL *, curliocmd, void *)
#define _curl_is_NULL(expr)

Definition at line 546 of file typecheck-gcc.h.

#define _curl_is_long (   expr)
Value:
(__builtin_types_compatible_p(__typeof__(expr), long) || \
__builtin_types_compatible_p(__typeof__(expr), signed long) || \
__builtin_types_compatible_p(__typeof__(expr), unsigned long) || \
__builtin_types_compatible_p(__typeof__(expr), int) || \
__builtin_types_compatible_p(__typeof__(expr), signed int) || \
__builtin_types_compatible_p(__typeof__(expr), unsigned int) || \
__builtin_types_compatible_p(__typeof__(expr), short) || \
__builtin_types_compatible_p(__typeof__(expr), signed short) || \
__builtin_types_compatible_p(__typeof__(expr), unsigned short) || \
__builtin_types_compatible_p(__typeof__(expr), char) || \
__builtin_types_compatible_p(__typeof__(expr), signed char) || \
__builtin_types_compatible_p(__typeof__(expr), unsigned char))
#define _curl_is_long_info (   info)    (CURLINFO_LONG < (info) && (info) < CURLINFO_DOUBLE)
#define _curl_is_long_option (   option)    (0 < (option) && (option) < CURLOPTTYPE_OBJECTPOINT)
#define _curl_is_NULL (   expr)    (__builtin_types_compatible_p(__typeof__(expr), __typeof__(NULL)))
#define _curl_is_off_t (   expr)    (__builtin_types_compatible_p(__typeof__(expr), curl_off_t))
#define _curl_is_off_t_info (   info)    (CURLINFO_OFF_T < (info))
#define _curl_is_off_t_option (   option)    ((option) > CURLOPTTYPE_OFF_T)
#define _curl_is_opensocket_cb (   expr)
Value:
(_curl_is_NULL(expr) || \
curl_socket_t(* _curl_opensocket_callback4)(const void *, curlsocktype, const struct curl_sockaddr *)
#define _curl_callback_compatible(func, type)
curl_socket_t(* _curl_opensocket_callback1)(void *, curlsocktype, struct curl_sockaddr *)
curl_socket_t(* curl_opensocket_callback)(void *clientp, curlsocktype purpose, struct curl_sockaddr *address)
Definition: curl.h:388
curl_socket_t(* _curl_opensocket_callback2)(void *, curlsocktype, const struct curl_sockaddr *)
curl_socket_t(* _curl_opensocket_callback3)(const void *, curlsocktype, struct curl_sockaddr *)
#define _curl_is_NULL(expr)

Definition at line 570 of file typecheck-gcc.h.

#define _curl_is_postfields (   expr)
Value:
(_curl_is_ptr((expr), void) || \
_curl_is_arr((expr), char))
#define _curl_is_arr(expr, type)
#define _curl_is_ptr(expr, type)
#define _curl_is_postfields_option (   option)
Value:
((option) == CURLOPT_POSTFIELDS || \
(option) == CURLOPT_COPYPOSTFIELDS || \
0)
#define _curl_is_progress_cb (   expr)
Value:
(_curl_is_NULL(expr) || \
#define _curl_callback_compatible(func, type)
int(* _curl_progress_callback2)(const void *, double, double, double, double)
int(* _curl_progress_callback1)(void *, double, double, double, double)
int(* curl_progress_callback)(void *clientp, double dltotal, double dlnow, double ultotal, double ulnow)
Definition: curl.h:203
#define _curl_is_NULL(expr)

Definition at line 587 of file typecheck-gcc.h.

#define _curl_is_ptr (   expr,
  type 
)
Value:
(_curl_is_NULL(expr) || \
__builtin_types_compatible_p(__typeof__(expr), type *) || \
__builtin_types_compatible_p(__typeof__(expr), const type *))
#define _curl_is_NULL(expr)
#define _curl_is_read_cb (   expr)
Value:
(_curl_is_NULL(expr) || \
_curl_callback_compatible((expr), __typeof__(fread) *) || \
_curl_callback_compatible((expr), _curl_read_callback1) || \
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE *argument for this option curl_easy_setopt expects a struct curl_httppost *argument for this option curl_easy_setopt expects a struct curl_slist *argument for this option curl_easy_getinfo expects a pointer to char *for this info curl_easy_getinfo expects a pointer to double for this info curl_easy_getinfo expects a pointer to struct curl_tlssessioninfo *for this info curl_easy_getinfo expects a pointer to curl_socket_t for this info void *typedef size_t(* _curl_read_callback2)(char *, size_t, size_t, const void *)
size_t(* _curl_read_callback3)(char *, size_t, size_t, FILE *)
#define _curl_callback_compatible(func, type)
size_t(* curl_read_callback)(char *buffer, size_t size, size_t nitems, void *instream)
Definition: curl.h:355
size_t(* _curl_read_callback5)(void *, size_t, size_t, const void *)
size_t fread(void *, size_t, size_t, FILE *)
size_t(* _curl_read_callback6)(void *, size_t, size_t, FILE *)
size_t(* _curl_read_callback4)(void *, size_t, size_t, void *)
#define _curl_is_NULL(expr)
#define _curl_is_seek_cb (   expr)
Value:
(_curl_is_NULL(expr) || \
#define _curl_callback_compatible(func, type)
int(* curl_seek_callback)(void *instream, curl_off_t offset, int origin)
Definition: curl.h:344
CURLcode(* _curl_seek_callback2)(const void *, curl_off_t, int)
CURLcode(* _curl_seek_callback1)(void *, curl_off_t, int)
#define _curl_is_NULL(expr)

Definition at line 674 of file typecheck-gcc.h.

#define _curl_is_slist_info (   info)    (((info) == CURLINFO_SSL_ENGINES) || ((info) == CURLINFO_COOKIELIST))
#define _curl_is_slist_option (   option)
Value:
((option) == CURLOPT_HTTP200ALIASES || \
(option) == CURLOPT_HTTPHEADER || \
(option) == CURLOPT_MAIL_RCPT || \
(option) == CURLOPT_POSTQUOTE || \
(option) == CURLOPT_PREQUOTE || \
(option) == CURLOPT_PROXYHEADER || \
(option) == CURLOPT_QUOTE || \
(option) == CURLOPT_RESOLVE || \
(option) == CURLOPT_TELNETOPTIONS || \
0)
#define _curl_is_socket_info (   info)    (CURLINFO_SOCKET < (info) && (info) < CURLINFO_OFF_T)
#define _curl_is_sockopt_cb (   expr)
Value:
(_curl_is_NULL(expr) || \
#define _curl_callback_compatible(func, type)
int(* curl_sockopt_callback)(void *clientp, curl_socket_t curlfd, curlsocktype purpose)
Definition: curl.h:373
int(* _curl_sockopt_callback2)(const void *, curl_socket_t, curlsocktype)
#define _curl_is_NULL(expr)
int(* _curl_sockopt_callback1)(void *, curl_socket_t, curlsocktype)

Definition at line 559 of file typecheck-gcc.h.

#define _curl_is_ssl_ctx_cb (   expr)
Value:
(_curl_is_NULL(expr) || \
CURLcode(* _curl_ssl_ctx_callback2)(CURL *, void *, const void *)
_curl_ssl_ctx_callback1 _curl_ssl_ctx_callback8
CURLcode(* _curl_ssl_ctx_callback3)(CURL *, const void *, void *)
CURLcode(* _curl_ssl_ctx_callback1)(CURL *, void *, void *)
#define _curl_callback_compatible(func, type)
CURLcode(* _curl_ssl_ctx_callback4)(CURL *, const void *, const void *)
_curl_ssl_ctx_callback1 _curl_ssl_ctx_callback6
_curl_ssl_ctx_callback1 _curl_ssl_ctx_callback7
CURLcode(* curl_ssl_ctx_callback)(CURL *curl, void *ssl_ctx, void *userptr)
Definition: curl.h:659
_curl_ssl_ctx_callback1 _curl_ssl_ctx_callback5
#define _curl_is_NULL(expr)

Definition at line 628 of file typecheck-gcc.h.

#define _curl_is_string (   expr)
Value:
(_curl_is_arr((expr), char) || \
_curl_is_arr((expr), signed char) || \
_curl_is_arr((expr), unsigned char))
#define _curl_is_arr(expr, type)
#define _curl_is_string_info (   info)    (CURLINFO_STRING < (info) && (info) < CURLINFO_LONG)
#define _curl_is_string_option (   option)
#define _curl_is_tlssessioninfo_info (   info)    (((info) == CURLINFO_TLS_SSL_PTR) || ((info) == CURLINFO_TLS_SESSION))
#define _curl_is_write_cb (   expr)
Value:
_curl_callback_compatible((expr), __typeof__(fwrite) *) || \
size_t(* _curl_write_callback4)(const void *, size_t, size_t, void *)
#define _curl_callback_compatible(func, type)
size_t(* _curl_write_callback1)(const char *, size_t, size_t, void *)
size_t(* _curl_write_callback5)(const void *, size_t, size_t, const void *)
#define _curl_is_read_cb(expr)
size_t(* _curl_write_callback6)(const void *, size_t, size_t, FILE *)
size_t(* _curl_write_callback2)(const char *, size_t, size_t, const void *)
size_t(* _curl_write_callback3)(const char *, size_t, size_t, FILE *)
size_t(* curl_write_callback)(char *buffer, size_t size, size_t nitems, void *outstream)
Definition: curl.h:243
size_t fwrite(const void *, size_t, size_t, FILE *)

Definition at line 526 of file typecheck-gcc.h.

#define _curl_is_write_cb_option (   option)
Value:
((option) == CURLOPT_HEADERFUNCTION || \
(option) == CURLOPT_WRITEFUNCTION)
#define _CURL_WARNING (   id,
  message 
)
Value:
static void __attribute__((__warning__(message))) \
__attribute__((__unused__)) __attribute__((__noinline__)) \
id(void) { __asm__(""); }
tf::tfVector4 __attribute__

Definition at line 158 of file typecheck-gcc.h.

#define curl_easy_getinfo (   handle,
  info,
  arg 
)
Value:
__extension__ ({ \
__typeof__(info) _curl_info = info; \
if(__builtin_constant_p(_curl_info)) { \
if(!_curl_is_arr((arg), char *)) \
_curl_easy_getinfo_err_string(); \
if(_curl_is_long_info(_curl_info)) \
if(!_curl_is_arr((arg), long)) \
_curl_easy_getinfo_err_long(); \
if(!_curl_is_arr((arg), double)) \
_curl_easy_getinfo_err_double(); \
if(!_curl_is_arr((arg), struct curl_slist *)) \
_curl_easy_getinfo_err_curl_slist(); \
if(!_curl_is_arr((arg), struct curl_tlssessioninfo *)) \
_curl_easy_getinfo_err_curl_tlssesssioninfo(); \
if(!_curl_is_arr((arg), struct curl_certinfo *)) \
_curl_easy_getinfo_err_curl_certinfo(); \
_curl_easy_getinfo_err_curl_socket(); \
_curl_easy_getinfo_err_curl_off_t(); \
} \
curl_easy_getinfo(handle, _curl_info, arg); \
})
#define _curl_is_socket_info(info)
#define _curl_is_slist_info(info)
#define _curl_is_off_t_info(info)
if(strcmp(arg,"1305")!=0)
Definition: unit1305.c:127
#define _curl_is_long_info(info)
#define _curl_is_double_info(info)
#define curl_easy_getinfo(handle, info, arg)
#define _curl_is_arr(expr, type)
CURL_TYPEOF_CURL_OFF_T curl_off_t
Definition: system.h:420
#define _curl_is_string_info(info)
#define _curl_is_tlssessioninfo_info(info)
#define _curl_is_certinfo_info(info)
int curl_socket_t
Definition: curl.h:130

Definition at line 114 of file typecheck-gcc.h.

#define curl_easy_setopt (   handle,
  option,
  value 
)

Definition at line 41 of file typecheck-gcc.h.

#define curl_multi_setopt (   handle,
  opt,
  param 
)    curl_multi_setopt(handle,opt,param)

Definition at line 151 of file typecheck-gcc.h.

#define curl_share_setopt (   share,
  opt,
  param 
)    curl_share_setopt(share,opt,param)

Definition at line 150 of file typecheck-gcc.h.

Typedef Documentation

typedef CURLcode(* _curl_conv_callback1) (char *, size_t length)

Definition at line 668 of file typecheck-gcc.h.

typedef CURLcode(* _curl_conv_callback2) (const char *, size_t length)

Definition at line 669 of file typecheck-gcc.h.

typedef CURLcode(* _curl_conv_callback3) (void *, size_t length)

Definition at line 670 of file typecheck-gcc.h.

typedef CURLcode(* _curl_conv_callback4) (const void *, size_t length)

Definition at line 671 of file typecheck-gcc.h.

typedef int(* _curl_debug_callback1) (CURL *, curl_infotype, char *, size_t, void *)

Definition at line 609 of file typecheck-gcc.h.

typedef int(* _curl_debug_callback2) (CURL *, curl_infotype, char *, size_t, const void *)

Definition at line 611 of file typecheck-gcc.h.

typedef int(* _curl_debug_callback3) (CURL *, curl_infotype, const char *, size_t, void *)

Definition at line 613 of file typecheck-gcc.h.

typedef int(* _curl_debug_callback4) (CURL *, curl_infotype, const char *, size_t, const void *)

Definition at line 615 of file typecheck-gcc.h.

typedef int(* _curl_debug_callback5) (CURL *, curl_infotype, unsigned char *, size_t, void *)

Definition at line 617 of file typecheck-gcc.h.

typedef int(* _curl_debug_callback6) (CURL *, curl_infotype, unsigned char *, size_t, const void *)

Definition at line 619 of file typecheck-gcc.h.

typedef int(* _curl_debug_callback7) (CURL *, curl_infotype, const unsigned char *, size_t, void *)

Definition at line 621 of file typecheck-gcc.h.

typedef int(* _curl_debug_callback8) (CURL *, curl_infotype, const unsigned char *, size_t, const void *)

Definition at line 623 of file typecheck-gcc.h.

typedef curlioerr(* _curl_ioctl_callback1) (CURL *, int, void *)

Definition at line 553 of file typecheck-gcc.h.

typedef curlioerr(* _curl_ioctl_callback2) (CURL *, int, const void *)

Definition at line 554 of file typecheck-gcc.h.

typedef curlioerr(* _curl_ioctl_callback3) (CURL *, curliocmd, void *)

Definition at line 555 of file typecheck-gcc.h.

typedef curlioerr(* _curl_ioctl_callback4) (CURL *, curliocmd, const void *)

Definition at line 556 of file typecheck-gcc.h.

typedef curl_socket_t(* _curl_opensocket_callback1) (void *, curlsocktype, struct curl_sockaddr *)

Definition at line 578 of file typecheck-gcc.h.

typedef curl_socket_t(* _curl_opensocket_callback2) (void *, curlsocktype, const struct curl_sockaddr *)

Definition at line 580 of file typecheck-gcc.h.

typedef curl_socket_t(* _curl_opensocket_callback3) (const void *, curlsocktype, struct curl_sockaddr *)

Definition at line 582 of file typecheck-gcc.h.

typedef curl_socket_t(* _curl_opensocket_callback4) (const void *, curlsocktype, const struct curl_sockaddr *)

Definition at line 584 of file typecheck-gcc.h.

typedef int(* _curl_progress_callback1) (void *, double, double, double, double)

Definition at line 592 of file typecheck-gcc.h.

typedef int(* _curl_progress_callback2) (const void *, double, double, double, double)

Definition at line 594 of file typecheck-gcc.h.

typedef size_t(* _curl_read_callback3) (char *, size_t, size_t, FILE *)

Definition at line 520 of file typecheck-gcc.h.

typedef size_t(* _curl_read_callback4) (void *, size_t, size_t, void *)

Definition at line 521 of file typecheck-gcc.h.

typedef size_t(* _curl_read_callback5) (void *, size_t, size_t, const void *)

Definition at line 522 of file typecheck-gcc.h.

typedef size_t(* _curl_read_callback6) (void *, size_t, size_t, FILE *)

Definition at line 523 of file typecheck-gcc.h.

typedef CURLcode(* _curl_seek_callback1) (void *, curl_off_t, int)

Definition at line 679 of file typecheck-gcc.h.

typedef CURLcode(* _curl_seek_callback2) (const void *, curl_off_t, int)

Definition at line 680 of file typecheck-gcc.h.

typedef int(* _curl_sockopt_callback1) (void *, curl_socket_t, curlsocktype)

Definition at line 564 of file typecheck-gcc.h.

typedef int(* _curl_sockopt_callback2) (const void *, curl_socket_t, curlsocktype)

Definition at line 565 of file typecheck-gcc.h.

typedef CURLcode(* _curl_ssl_ctx_callback1) (CURL *, void *, void *)

Definition at line 639 of file typecheck-gcc.h.

typedef CURLcode(* _curl_ssl_ctx_callback2) (CURL *, void *, const void *)

Definition at line 640 of file typecheck-gcc.h.

typedef CURLcode(* _curl_ssl_ctx_callback3) (CURL *, const void *, void *)

Definition at line 641 of file typecheck-gcc.h.

typedef CURLcode(* _curl_ssl_ctx_callback4) (CURL *, const void *, const void *)

Definition at line 642 of file typecheck-gcc.h.

Definition at line 654 of file typecheck-gcc.h.

Definition at line 655 of file typecheck-gcc.h.

Definition at line 656 of file typecheck-gcc.h.

Definition at line 657 of file typecheck-gcc.h.

typedef size_t(* _curl_write_callback1) (const char *, size_t, size_t, void *)

Definition at line 536 of file typecheck-gcc.h.

typedef size_t(* _curl_write_callback2) (const char *, size_t, size_t, const void *)

Definition at line 537 of file typecheck-gcc.h.

typedef size_t(* _curl_write_callback3) (const char *, size_t, size_t, FILE *)

Definition at line 539 of file typecheck-gcc.h.

typedef size_t(* _curl_write_callback4) (const void *, size_t, size_t, void *)

Definition at line 540 of file typecheck-gcc.h.

typedef size_t(* _curl_write_callback5) (const void *, size_t, size_t, const void *)

Definition at line 541 of file typecheck-gcc.h.

typedef size_t(* _curl_write_callback6) (const void *, size_t, size_t, FILE *)

Definition at line 543 of file typecheck-gcc.h.

Function Documentation

_CURL_WARNING ( _curl_easy_setopt_err_long  ,
"curl_easy_setopt expects a long argument for this option"   
)
curl_easy_setopt expects a curl_off_t argument for this option _CURL_WARNING ( _curl_easy_setopt_err_string  ,
"curl_easy_setopt expects a ""string ('char *' or char[]) argument for this option"   
)
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option _CURL_WARNING ( _curl_easy_setopt_err_read_cb  ,
"curl_easy_setopt expects a curl_read_callback argument for this option"   
)
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option _CURL_WARNING ( _curl_easy_setopt_err_sockopt_cb  ,
"curl_easy_setopt expects a curl_sockopt_callback argument for this option"   
)
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option _CURL_WARNING ( _curl_easy_setopt_err_progress_cb  ,
"curl_easy_setopt expects a curl_progress_callback argument for this option"   
)
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option _CURL_WARNING ( _curl_easy_setopt_err_ssl_ctx_cb  ,
"curl_easy_setopt expects a curl_ssl_ctx_callback argument for this option"   
)
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option _CURL_WARNING ( _curl_easy_setopt_err_seek_cb  ,
"curl_easy_setopt expects a curl_seek_callback argument for this option"   
)
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option _CURL_WARNING ( _curl_easy_setopt_err_error_buffer  ,
"curl_easy_setopt expects a ""char buffer of CURL_ERROR_SIZE as argument for this option"   
)
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE* argument for this option _CURL_WARNING ( _curl_easy_setopt_err_postfields  ,
"curl_easy_setopt expects a 'void *' or 'char *' argument for this option"   
)
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE* argument for this option curl_easy_setopt expects a struct curl_httppost* argument for this option _CURL_WARNING ( _curl_easy_setopt_err_curl_mimepost  ,
"curl_easy_setopt expects a 'curl_mime *' ""argument for this option"   
)
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE* argument for this option curl_easy_setopt expects a struct curl_httppost* argument for this option curl_easy_setopt expects a struct curl_slist* argument for this option _CURL_WARNING ( _curl_easy_setopt_err_CURLSH  ,
"curl_easy_setopt expects a CURLSH* argument for this option"   
)
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE* argument for this option curl_easy_setopt expects a struct curl_httppost* argument for this option curl_easy_setopt expects a struct curl_slist* argument for this option curl_easy_getinfo expects a pointer to char* for this info _CURL_WARNING ( _curl_easy_getinfo_err_long  ,
"curl_easy_getinfo expects a pointer to long for this info"   
)
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE* argument for this option curl_easy_setopt expects a struct curl_httppost* argument for this option curl_easy_setopt expects a struct curl_slist* argument for this option curl_easy_getinfo expects a pointer to char* for this info curl_easy_getinfo expects a pointer to double for this info _CURL_WARNING ( _curl_easy_getinfo_err_curl_slist  ,
"curl_easy_getinfo expects a pointer to 'struct curl_slist *' for this info"   
)
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE* argument for this option curl_easy_setopt expects a struct curl_httppost* argument for this option curl_easy_setopt expects a struct curl_slist* argument for this option curl_easy_getinfo expects a pointer to char* for this info curl_easy_getinfo expects a pointer to double for this info curl_easy_getinfo expects a pointer to struct curl_tlssessioninfo* for this info _CURL_WARNING ( _curl_easy_getinfo_err_curl_certinfo  ,
"curl_easy_getinfo expects a pointer to ""'struct curl_certinfo *' for this info"   
)
curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE* argument for this option curl_easy_setopt expects a struct curl_httppost* argument for this option curl_easy_setopt expects a struct curl_slist* argument for this option curl_easy_getinfo expects a pointer to char* for this info curl_easy_getinfo expects a pointer to double for this info curl_easy_getinfo expects a pointer to struct curl_tlssessioninfo* for this info curl_easy_getinfo expects a pointer to curl_socket_t for this info _CURL_WARNING ( _curl_easy_getinfo_err_curl_off_t  ,
"curl_easy_getinfo expects a pointer to curl_off_t for this info"   
)

Variable Documentation

curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE* argument for this option curl_easy_setopt expects a struct curl_httppost* argument for this option curl_easy_setopt expects a struct curl_slist* argument for this option curl_easy_getinfo expects a pointer to char* for this info curl_easy_getinfo expects a pointer to double for this info curl_easy_getinfo expects a pointer to struct curl_tlssessioninfo* for this info curl_easy_getinfo expects a pointer to curl_socket_t for this info void* typedef size_t(* _curl_read_callback2) (char *, size_t, size_t, const void *)

Definition at line 519 of file typecheck-gcc.h.

curl_easy_setopt expects a curl_off_t argument for this option curl_easy_setopt expects a curl_write_callback argument for this option curl_easy_setopt expects a curl_ioctl_callback argument for this option curl_easy_setopt expects a curl_opensocket_callback argument for this option curl_easy_setopt expects a curl_debug_callback argument for this option curl_easy_setopt expects a curl_conv_callback argument for this option curl_easy_setopt expects a private data pointer as argument for this option curl_easy_setopt expects a FILE *argument for this option curl_easy_setopt expects a struct curl_httppost *argument for this option curl_easy_setopt expects a struct curl_slist *argument for this option curl_easy_getinfo expects a pointer to char *for this info curl_easy_getinfo expects a pointer to double for this info curl_easy_getinfo expects a pointer to struct curl_tlssessioninfo *for this info curl_easy_getinfo expects a pointer to curl_socket_t for this info size_t

Definition at line 518 of file typecheck-gcc.h.



rc_tagdetect_client
Author(s): Monika Florek-Jasinska , Raphael Schaller
autogenerated on Sat Feb 13 2021 03:42:17