Binary Decompilation Save

Extracting high level semantic information from binary code

Project README

Table of Contents

uintptr_t safe_addptr(int *of, uint64_t a, uint64_t b) {
    
    uintptr_t r = a + b;
    
    if (r < a) {
      *of = 1;
      return r;
    } else {
      return r;
    }
}
Open Source Agenda is not affiliated with "Binary Decompilation" Project. README Source: sdasgup3/binary-decompilation

Open Source Agenda Badge

Open Source Agenda Rating