mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
mbedtls: make style
This commit is contained in:
parent
6324e2e746
commit
b1d6eaf2f7
177 changed files with 37224 additions and 41821 deletions
|
@ -24,21 +24,18 @@
|
|||
#include "mbedtls/version.h"
|
||||
#include <string.h>
|
||||
|
||||
unsigned int mbedtls_version_get_number( void )
|
||||
{
|
||||
return( MBEDTLS_VERSION_NUMBER );
|
||||
unsigned int mbedtls_version_get_number(void) {
|
||||
return (MBEDTLS_VERSION_NUMBER);
|
||||
}
|
||||
|
||||
void mbedtls_version_get_string( char *string )
|
||||
{
|
||||
memcpy( string, MBEDTLS_VERSION_STRING,
|
||||
sizeof( MBEDTLS_VERSION_STRING ) );
|
||||
void mbedtls_version_get_string(char *string) {
|
||||
memcpy(string, MBEDTLS_VERSION_STRING,
|
||||
sizeof(MBEDTLS_VERSION_STRING));
|
||||
}
|
||||
|
||||
void mbedtls_version_get_string_full( char *string )
|
||||
{
|
||||
memcpy( string, MBEDTLS_VERSION_STRING_FULL,
|
||||
sizeof( MBEDTLS_VERSION_STRING_FULL ) );
|
||||
void mbedtls_version_get_string_full(char *string) {
|
||||
memcpy(string, MBEDTLS_VERSION_STRING_FULL,
|
||||
sizeof(MBEDTLS_VERSION_STRING_FULL));
|
||||
}
|
||||
|
||||
#endif /* MBEDTLS_VERSION_C */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue