You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
853 B
22 lines
853 B
#ifndef LIGHTNING_BITCOIN_PULLPUSH_H
|
|
#define LIGHTNING_BITCOIN_PULLPUSH_H
|
|
#include "config.h"
|
|
#include "bitcoin/varint.h"
|
|
|
|
void push_varint(varint_t v,
|
|
void (*push)(const void *, size_t, void *), void *pushp);
|
|
void push_le32(u32 v, void (*push)(const void *, size_t, void *), void *pushp);
|
|
void push_le64(u64 v, void (*push)(const void *, size_t, void *), void *pushp);
|
|
void push_varint_blob(const void *blob, varint_t len,
|
|
void (*push)(const void *, size_t, void *),
|
|
void *pushp);
|
|
|
|
u64 pull_varint(const u8 **cursor, size_t *max);
|
|
u32 pull_le32(const u8 **cursor, size_t *max);
|
|
u64 pull_le64(const u8 **cursor, size_t *max);
|
|
|
|
/* This extends **pptr by tal_resize */
|
|
void push(const void *data, size_t len, void *pptr_);
|
|
const u8 *pull(const u8 **cursor, size_t *max, void *copy, size_t n);
|
|
|
|
#endif /* LIGHTNING_BITCOIN_PULLPUSH_H */
|
|
|