File: elfcreator.h

package info (click to toggle)
dwarves 1.31-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,916 kB
  • sloc: ansic: 154,000; python: 926; sh: 725; makefile: 193
file content (18 lines) | stat: -rw-r--r-- 429 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * SPDX-License-Identifier: GPL-2.0-only
 *
 * Copyright 2009 Red Hat, Inc.
 *
 * Author: Peter Jones <pjones@redhat.com>
 */
#ifndef ELFCREATOR_H
#define ELFCREATOR_H 1

#include <gelf.h>

typedef struct elf_creator ElfCreator;
extern ElfCreator *elfcreator_begin(char *path, Elf *elf);
extern void elfcreator_copy_scn(ElfCreator *ctor, Elf_Scn *scn);
extern void elfcreator_end(ElfCreator *ctor);

#endif /* ELFCREATOR_H */