feat(utilities): added the get_file_content_with_size to properly handle binary files

This commit is contained in:
lisk77 2025-08-28 17:00:49 +02:00
parent 37a696bd38
commit 358db79882
2 changed files with 22 additions and 0 deletions

View file

@ -62,5 +62,6 @@ int cut_path(char*, char*);
void combine_path(char*, char*);
PathType get_path_type(const char*);
char* get_file_content(char*);
char* get_file_content_with_size(char*, size_t*);
#endif // UTILITIES_H