mirror of
https://github.com/libtom/libtomcrypt
synced 2026-08-25 20:26:07 -04:00
12 lines
346 B
C
12 lines
346 B
C
/* LibTomCrypt, modular cryptographic library -- Tom St Denis */
|
|
/* SPDX-License-Identifier: Unlicense */
|
|
|
|
#define LTC_NO_NULL_TERMINATION_CHECK
|
|
#include <tomcrypt_test.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);
|
|
}
|