blob: b965cebb9ba6e62ed8047890fc5db75abee483a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/**
* @file file.h
* @brief File I/O utilities
* @date 2024-02-24
* @copyright Copyright (c) 2024
*/
#pragma once
#include <stdbool.h>
const char* string_from_file(const char* path);
|