...
Code Block |
---|
mytypedef_t x; uintmax_t temp; /* ... */ temp = x; /* always secure*/ /* ... change the value of temp ... */ if (temp <= MYTYPEDEF_MAX) { x = temp; } |
...
...
Code Block |
---|
mytypedef_t x; uintmax_t temp; /* ... */ temp = x; /* always secure*/ /* ... change the value of temp ... */ if (temp <= MYTYPEDEF_MAX) { x = temp; } |
...