mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-01-26 03:35:35 +00:00
Rephrase confusing function description
This commit is contained in:
parent
317efe85e1
commit
36e5fac0fb
@ -17,7 +17,7 @@
|
|||||||
assert( sizeof( *( p ) ) == sizeof( *( start ) ) ); \
|
assert( sizeof( *( p ) ) == sizeof( *( start ) ) ); \
|
||||||
/* <= is checked to support use inside a loop where \
|
/* <= is checked to support use inside a loop where \
|
||||||
pointer is incremented after reading data. */ \
|
pointer is incremented after reading data. */ \
|
||||||
assert( (uint32_t)( ( ( p ) - ( start ) ) + step ) <= len );\
|
assert( (uint32_t)( ( ( p ) - ( start ) ) + ( step ) ) <= ( len ) );\
|
||||||
( p ) += step; \
|
( p ) += step; \
|
||||||
} \
|
} \
|
||||||
while( 0 )
|
while( 0 )
|
||||||
@ -156,7 +156,8 @@ uint8_t * receive_data( uint32_t * data_len )
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Parses received byte array and finds number of hex parameters.
|
* \brief Find count of hex arguments(test function arguments) in the
|
||||||
|
* received binary data.
|
||||||
*
|
*
|
||||||
* \param count Parameter count
|
* \param count Parameter count
|
||||||
* \param data Received Byte array
|
* \param data Received Byte array
|
||||||
|
Loading…
x
Reference in New Issue
Block a user