bh_read_file.h 367 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #ifndef _BH_FILE_H
  6. #define _BH_FILE_H
  7. #include "bh_platform.h"
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. char *
  12. bh_read_file_to_buffer(const char *filename, uint32 *ret_size);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif /* end of _BH_FILE_H */