My Project
Loading...
Searching...
No Matches
types.h
1
49WOLFSSL_API void* XMALLOC(size_t n, void* heap, int type);
50
95WOLFSSL_API void* XREALLOC(void *p, size_t n, void* heap, int type);
96
143WOLFSSL_API void XFREE(void *p, void* heap, int type);
144
172WOLFSSL_API word32 CheckRunTimeSettings(void);
WOLFSSL_API word32 CheckRunTimeSettings(void)
This function checks the compile time class settings. It is important when a user is using a wolfCryp...
Definition integer.c:103
WOLFSSL_API void * XREALLOC(void *p, size_t n, void *heap, int type)
This is not actually a function, but rather a preprocessor macro, which allows the user to substitute...
Definition memory.c:994
WOLFSSL_API void * XMALLOC(size_t n, void *heap, int type)
This is not actually a function, but rather a preprocessor macro, which allows the user to substitute...
Definition memory.c:973
WOLFSSL_API void XFREE(void *p, void *heap, int type)
This is not actually a function, but rather a preprocessor macro, which allows the user to substitute...
Definition memory.c:1015