elflib
Version:
ELF file reader and writer
13 lines (12 loc) • 874 B
TypeScript
import * as ELF from './types/index.js';
export declare function isaToString(isa: ELF.ISA): string;
export declare function abiToString(abi: ELF.ABI): string;
export declare function elfTypeToString(elfType: ELF.Type): string;
export declare function segmentTypeToString(segmentType: ELF.SegmentType): string;
export declare function sectionTypeToString(sectionType: ELF.SectionType): string;
export declare function sectionFlagsToString(flags: number | bigint): string;
export declare function programHeaderFlagsToString(flags: number): string;
export declare function elfFlagsToString(isa: ELF.ISA, flags: number): string;
export declare function symbolTypeToString(type: ELF.SymbolType): string;
export declare function symbolBindingToString(binding: ELF.SymbolBinding): string;
export declare function symbolVisibilityToString(visibility: ELF.SymbolVisibility): string;