Filter-Crypto
view release on metacpan or search on metacpan
CryptoCommon-c.inc view on Meta::CPAN
/* 1003.1-2001 extension to the ISO C */
/* standard (ISO/IEC 9899:1999), and */
/* is called _snprintf() on Win32. */
#ifdef WIN32
# define snprintf _snprintf
#endif
#define FILTER_CRYPTO_OPENSSL_ERR_STR \
(ERR_reason_error_string(FilterCrypto_GetLastSSLError()))
/* Macro to set the CUR length in an */
/* SV whose string space has been */
/* manipulated directly. Also adds a */
/* NUL terminator in case the string */
/* gets used as a C "string" later. */
#define FilterCrypto_SvSetCUR(sv, len) STMT_START { \
if (SvPOK(sv)) { \
char * const p = SvPVX(sv); \
SvCUR_set(sv, len); \
p[len] = '\0'; \
} \
( run in 1.171 second using v1.01-cache-2.11-cpan-d7a12ab2c7f )