1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-01 10:06:53 +03:00

tests: Add mbedtls_test_ prefix to platform_* functions

Add mbedtls_test_ prefix to platform_setup() and
platform_teardown() test helper functions.

Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
Ronald Cron
2020-06-08 16:44:58 +02:00
parent 2058d56fcc
commit e9c09f1efc
3 changed files with 6 additions and 6 deletions

View File

@ -50,8 +50,8 @@
#include <stddef.h>
#include <stdint.h>
int platform_setup( void );
void platform_teardown( void );
int mbedtls_test_platform_setup( void );
void mbedtls_test_platform_teardown( void );
int unhexify( unsigned char *obuf, const char *ibuf );
void hexify( unsigned char *obuf, const unsigned char *ibuf, int len );