pub unsafe extern "C" fn ble_uuid_to_str(
uuid: *const ble_uuid_t,
dst: *mut c_char,
) -> *mut c_char
Expand description
@brief Converts the specified UUID to its string representation.
Example string representations: o 16-bit: 0x1234 o 32-bit: 0x12345678 o 128-bit: 12345678-1234-1234-1234-123456789abc
@param uuid The source UUID to convert. @param dst The destination buffer.
@return A pointer to the supplied destination buffer.