mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
18 lines
353 B
C
18 lines
353 B
C
/** @file
|
|
Copyright (c) 2020, PMheart. All rights reserved.
|
|
SPDX-License-Identifier: BSD-3-Clause
|
|
**/
|
|
|
|
#ifndef OC_USER_FILE_H
|
|
#define OC_USER_FILE_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
|
|
uint8_t *readFile(const char *str, uint32_t *size);
|
|
|
|
void writeFile(const char *str, void *data, uint32_t size);
|
|
|
|
#endif // OC_USER_FILE_H
|