mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 23:24:27 +01:00
overflows: helpers for integer assignment overflows.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
committed by
neil saitug
parent
dd00d4dcf8
commit
888774e2ad
@@ -1,6 +1,7 @@
|
|||||||
#ifndef LIGHTNING_COMMON_OVERFLOWS_H
|
#ifndef LIGHTNING_COMMON_OVERFLOWS_H
|
||||||
#define LIGHTNING_COMMON_OVERFLOWS_H
|
#define LIGHTNING_COMMON_OVERFLOWS_H
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include <ccan/short_types/short_types.h>
|
||||||
|
|
||||||
static inline bool add_overflows_size_t(uint64_t a, uint64_t b)
|
static inline bool add_overflows_size_t(uint64_t a, uint64_t b)
|
||||||
{
|
{
|
||||||
@@ -21,4 +22,22 @@ static inline bool mul_overflows_u64(uint64_t a, uint64_t b)
|
|||||||
ret = a * b;
|
ret = a * b;
|
||||||
return (ret / a != b);
|
return (ret / a != b);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline bool assign_overflow_u8(u8 *dst, uint64_t v)
|
||||||
|
{
|
||||||
|
*dst = v;
|
||||||
|
return *dst == v;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline bool assign_overflow_u16(u16 *dst, uint64_t v)
|
||||||
|
{
|
||||||
|
*dst = v;
|
||||||
|
return *dst == v;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline bool assign_overflow_u32(u32 *dst, uint64_t v)
|
||||||
|
{
|
||||||
|
*dst = v;
|
||||||
|
return *dst == v;
|
||||||
|
}
|
||||||
#endif /* LIGHTNING_COMMON_OVERFLOWS_H */
|
#endif /* LIGHTNING_COMMON_OVERFLOWS_H */
|
||||||
|
|||||||
Reference in New Issue
Block a user