codecrypt/lib/tools.h

11 lines
128 B
C

#ifndef _CCR_TOOLS_H_
#define _CCR_TOOLS_H_
#include "codecrypt.h"
void* ccr_malloc (size_t);
void ccr_free (void*);
#endif