1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Fix documentation

Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
Dave Rodgman
2023-04-24 12:53:29 +01:00
parent bbf881053d
commit 0f16d560aa
2 changed files with 4 additions and 11 deletions

View File

@ -33,16 +33,6 @@
#include "bn_mul.h"
#include "constant_time_internal.h"
/**
* \brief Count leading zeros
*
* \warning The result is undefined if \p a == 0
*
* \param a The value to operate on
*
* \return The number of leading zeros, if \p a != 0. If \p a == 0, the result
* is undefined.
*/
inline size_t mbedtls_mpi_core_clz(mbedtls_mpi_uint a)
{
#if defined(__has_builtin)