Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #118, Remove C++-style comments #119

Merged
merged 1 commit into from
Oct 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions elf2cfetbl.c
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ ElfStrMap e_machine_Map[] = {
{0, "* Unknown Machine Type (%d) *"},
};

// Elf Header helper functions
/* Elf Header helper functions */
uint8_t get_e_ident(const union Elf_Ehdr *ElfHeaderLcl, int index)
{
if (TargetWordsizeIs32Bit)
Expand Down Expand Up @@ -423,7 +423,7 @@ uint16_t get_e_shnum(const union Elf_Ehdr *ElfHeaderLcl)
}
}

// Elf Section Header helper functions
/* Elf Section Header helper functions */

uint32_t get_sh_name(const union Elf_Shdr *SectionHeader)
{
Expand Down Expand Up @@ -530,7 +530,7 @@ uint64_t get_sh_entsize(const union Elf_Shdr *SectionHeader)
}
}

// Elf_Sym helper functions
/* Elf_Sym helper functions */

uint32_t get_st_name(const union Elf_Sym *Symbol)
{
Expand Down