Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 156 Bytes

README.md

File metadata and controls

8 lines (7 loc) · 156 Bytes

2.27

/* return 1 if argument s and y can be added without causing overflow. */
int uadd_ok(unsigned x, unsigned y) {
    return x + y >= x;
}