MCPcopy Create free account
hub / github.com/ElementsProject/elements / UCharCast

Function UCharCast

src/span.h:275–275  ·  view source on GitHub ↗

Helper functions to safely cast to unsigned char pointers.

Source from the content-addressed store, hash-verified

273
274// Helper functions to safely cast to unsigned char pointers.
275inline unsigned char* UCharCast(char* c) { return (unsigned char*)c; }
276inline unsigned char* UCharCast(unsigned char* c) { return c; }
277inline const unsigned char* UCharCast(const char* c) { return (unsigned char*)c; }
278inline const unsigned char* UCharCast(const unsigned char* c) { return c; }

Callers 7

writeMethod · 0.85
CreatePeginWitnessInnerFunction · 0.85
UCharSpanCastFunction · 0.85
writeMethod · 0.85
strMethod · 0.85
DoTestFunction · 0.85
BOOST_AUTO_TEST_CASEFunction · 0.85

Calls

no outgoing calls

Tested by 2

DoTestFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68