s1-mod/deps/libtomcrypt/tests/no_null_termination_check_test.c
2024-02-27 03:09:30 -05:00

13 lines
341 B
C

/* LibTomCrypt, modular cryptographic library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
#define LTC_NO_NULL_TERMINATION_CHECK
#include "tomcrypt.h"
#define NNTCT_NULL ((void *)0)
int no_null_termination_check_test(void)
{
return crypt_fsa(NNTCT_NULL, NNTCT_NULL, NNTCT_NULL, NNTCT_NULL, NNTCT_NULL, NNTCT_NULL, 0);
}