mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
4ffda340d3
And turn "" includes into full-path (which makes it easier to put config.h first, and finds some cases check-includes.sh missed previously). config.h sets _GNU_SOURCE which really needs to be done before any '#includes': we mainly got away with it with glibc, but other platforms like Alpine may have stricter requirements. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
16 lines
329 B
C
16 lines
329 B
C
#include "config.h"
|
|
#include <bitcoin/preimage.h>
|
|
#include <wire/wire.h>
|
|
|
|
void fromwire_preimage(const u8 **cursor, size_t *max, struct preimage *preimage)
|
|
{
|
|
fromwire(cursor, max, preimage, sizeof(*preimage));
|
|
}
|
|
|
|
void towire_preimage(u8 **pptr, const struct preimage *preimage)
|
|
{
|
|
towire(pptr, preimage, sizeof(*preimage));
|
|
}
|
|
|
|
|