18 lines
571 B
C
Raw Normal View History

2020-10-13 15:04:59 +02:00
/******************************************************************************/
/* 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 "platform.h"
2020-10-13 19:50:29 +02:00
#include <stdint.h>
2020-10-13 15:04:59 +02:00
void init_terminal(void);
2020-10-13 19:33:01 +02:00
char* CHR_to_utf8(const CHR *const input);
2020-10-13 15:04:59 +02:00
uint64_t get_file_size(FILE* const file);
const CHR *get_file_name(const CHR *path);
2020-10-13 15:04:59 +02:00
#endif