mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 06:41:44 +01:00
12 lines
371 B
C
12 lines
371 B
C
#ifndef LIGHTNING_LIGHTNINGD_MEMDUMP_H
|
|
#define LIGHTNING_LIGHTNINGD_MEMDUMP_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
#include <stdbool.h>
|
|
|
|
struct command;
|
|
struct subd;
|
|
|
|
void opening_memleak_done(struct command *cmd, struct subd *leaker);
|
|
void peer_memleak_done(struct command *cmd, struct subd *leaker);
|
|
#endif /* LIGHTNING_LIGHTNINGD_MEMDUMP_H */
|