2021-11-13 21:56:53 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2020-08-06 15:01:08 +01:00
|
|
|
/*
|
|
|
|
|
* Read file into memory
|
|
|
|
|
*
|
|
|
|
|
* Copyright Johan Malm 2020
|
|
|
|
|
*/
|
|
|
|
|
|
2023-05-13 16:10:33 +03:00
|
|
|
#ifndef LABWC_GRAB_FILE_H
|
|
|
|
|
#define LABWC_GRAB_FILE_H
|
2020-08-06 15:01:08 +01:00
|
|
|
|
2024-04-14 14:20:57 -04:00
|
|
|
#include "common/buf.h"
|
|
|
|
|
|
2020-08-06 15:01:08 +01:00
|
|
|
/**
|
|
|
|
|
* grab_file - read file into memory buffer
|
|
|
|
|
* @filename: file to read
|
2024-04-14 14:20:57 -04:00
|
|
|
* Free returned buffer with buf_reset().
|
2020-08-06 15:01:08 +01:00
|
|
|
*/
|
2024-04-14 14:20:57 -04:00
|
|
|
struct buf grab_file(const char *filename);
|
2020-08-06 15:01:08 +01:00
|
|
|
|
2023-05-13 16:10:33 +03:00
|
|
|
#endif /* LABWC_GRAB_FILE_H */
|