mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
670670f138
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
15 lines
317 B
C
15 lines
317 B
C
#ifndef LIGHTNING_OVERFLOWS_H
|
|
#define LIGHTNING_OVERFLOWS_H
|
|
|
|
static inline bool add_overflows_size_t(uint64_t a, uint64_t b)
|
|
{
|
|
return (size_t)a != a || (size_t)b != b || (a + b) < (size_t)a;
|
|
}
|
|
|
|
static inline bool add_overflows_u64(uint64_t a, uint64_t b)
|
|
{
|
|
return (a + b) < a;
|
|
}
|
|
|
|
#endif /* LIGHTNING_OVERFLOWS_H */
|