summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/debug/elf_parser.h
blob: 887d82fa9653c4d04a4c88e4823bf4a2c1eb589f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * Copyright (C) 2021 Ant Group.  All rights reserved.
 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 */

#ifndef _ELF_PARSER_H_
#define _ELF_PARSER_H_
#include <stdbool.h>

#ifdef __cplusplus
extern "C" {
#endif

bool
is_ELF(void *buf);

bool
is_ELF64(void *buf);

bool
get_text_section(void *buf, uint64_t *offset, uint64_t *size);

#ifdef __cplusplus
}
#endif

#endif