Rename MPS files library/mps/xxx.[ch] to library/mps_xxx.[ch]

Signed-off-by: Hanno Becker <[email protected]>
This commit is contained in:
Hanno Becker
2021-03-29 14:19:32 +01:00
parent b910016049
commit c518c3b7bb
9 changed files with 14 additions and 15 deletions
+2 -2
View File
@@ -47,8 +47,8 @@ set(src_crypto
md4.c
md5.c
memory_buffer_alloc.c
mps/reader.c
mps/trace.o
mps_reader.c
mps_trace.c
nist_kw.c
oid.c
padlock.c
+2 -2
View File
@@ -104,8 +104,8 @@ OBJS_CRYPTO= \
md4.o \
md5.o \
memory_buffer_alloc.o \
mps/reader.o \
mps/trace.o \
mps_reader.o \
mps_trace.o \
nist_kw.o \
oid.o \
padlock.o \
@@ -19,9 +19,9 @@
* This file is part of Mbed TLS (https://tls.mbed.org)
*/
#include "reader.h"
#include "common.h"
#include "trace.h"
#include "mps_reader.h"
#include "mps_common.h"
#include "mps_trace.h"
#include <string.h>
@@ -116,8 +116,8 @@
#include <stdio.h>
#include "common.h"
#include "error.h"
#include "mps_common.h"
#include "mps_error.h"
struct mbedtls_reader;
typedef struct mbedtls_reader mbedtls_reader;
+2 -2
View File
@@ -19,11 +19,11 @@
* This file is part of Mbed TLS (https://tls.mbed.org)
*/
#include "common.h"
#include "mps_common.h"
#if defined(MBEDTLS_MPS_TRACE)
#include "trace.h"
#include "mps_trace.h"
#include <stdarg.h>
static int trace_depth_ = 0;
+2 -3
View File
@@ -27,10 +27,9 @@
#define MBEDTLS_MPS_TRACE_H
#include "common.h"
#include "mps_common.h"
#include "mps_trace.h"
#include "../common.h"
#include "trace.h"
#if defined(MBEDTLS_PLATFORM_C)
#include "mbedtls/platform.h"
#else
+1 -1
View File
@@ -3,7 +3,7 @@
#include <stdlib.h>
/* TODO: How are test suites supposed to include internal headers? */
#include "../library/mps/reader.h"
#include "../library/mps_reader.h"
/*
* Compile-time configuration for test suite.