1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright (c) 2018, Intel Corporation 4 * All rights reserved. 5 */ 6 #ifndef TSS2_TCTI_FUZZING_H 7 #define TSS2_TCTI_FUZZING_H 8 9 #include "tss2_tcti.h" 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 TSS2_RC Tss2_Tcti_Fuzzing_Init ( 16 TSS2_TCTI_CONTEXT *tcti_ctx, 17 size_t *size, 18 const char *conf); 19 20 #ifdef __cplusplus 21 } 22 #endif 23 24 #endif /* TSS2_TCTI_FUZZING_H */ 25