filter functions
| 234 | // filter functions |
| 235 | // |
| 236 | STATIC |
| 237 | BOOLEAN |
| 238 | IsTextShdr ( |
| 239 | Elf_Shdr *Shdr |
| 240 | ) |
| 241 | { |
| 242 | return (BOOLEAN) ((Shdr->sh_flags & (SHF_WRITE | SHF_ALLOC)) == SHF_ALLOC); |
| 243 | } |
| 244 | |
| 245 | STATIC |
| 246 | BOOLEAN |
no outgoing calls
no test coverage detected