MCPcopy Create free account
hub / github.com/acl-dev/acl / acl_cpp_verbose

Function acl_cpp_verbose

lib_acl_cpp/src/acl_cpp_init.cpp:17–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15}
16
17const char* acl_cpp_verbose(void)
18{
19 static string buf;
20 buf.clear();
21
22#ifdef HAS_MBEDTLS
23 buf += "HAS_MBEDTLS";
24# ifdef HAS_MBEDTLS_DLL
25 buf += ", HAS_MBEDTLS_DLL";
26# endif
27#endif
28
29#ifdef HAS_POLARSSL
30 buf += ", HAS_POLARSSL";
31# ifdef HAS_POLARSSL_DLL
32 buf += ", HAS_POLARSSL_DLL";
33# endif
34#endif
35
36#ifdef ACL_CLIENT_ONLY
37 buf += ", ACL_CLIENT_ONLY";
38#endif
39
40#ifdef ACL_HOOK_NEW
41 buf += ", ACL_HOOK_NEW";
42#endif
43
44 return buf.c_str();
45}
46
47#ifdef ACL_WINDOWS
48

Callers

nothing calls this directly

Calls 2

clearMethod · 0.45
c_strMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…