#pragma once
#ifndef LIBC_FUNCTIONS_H
#define LIBC_FUNCTIONS_H

int libc_init(void);

#ifdef USE_BLOWFISH
int bf_atoi( const char* str );
#define atoi bf_atoi
#endif

#ifdef QSEE
#if defined(USE_QSEE_MEMORY_ALLOC)
#ifdef malloc
#undef malloc
#endif
#define malloc qsee_malloc
#ifdef free
#undef free
#endif
#define free qsee_free
#endif
#endif //#ifdef QSEE

#endif
