This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-variable-monitor/source/ucli/elf.h
2023-11-26 20:34:52 -05:00

12 lines
174 B
C++

#ifndef _PERF_ELF_H__
#define _PERF_ELF_H__
#include <set>
#include <string>
#include "symbol.h"
bool get_symbol_from_elf(std::set<symbol> &ss, const char *path);
#endif