20 lines
605 B
C
20 lines
605 B
C
/******************************************************************************/
|
|
/* MCrypt, by LoRd_MuldeR <MuldeR2@GMX.de> */
|
|
/* This work has been released under the CC0 1.0 Universal license! */
|
|
/******************************************************************************/
|
|
|
|
#ifndef INC_UTILS_H
|
|
#define INC_UTILS_H
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include "platform.h"
|
|
|
|
char* CHR_to_utf8(const CHR *const input);
|
|
void free_utf8(char* const str_utf8);
|
|
uint64_t get_file_size(FILE* const file);
|
|
void init_terminal(void);
|
|
|
|
#endif
|