mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-09 23:27:17 +01:00
12 lines
192 B
C
12 lines
192 B
C
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <common/amount.h>
|
||
|
|
||
|
struct scidsat {
|
||
|
char scid[17];
|
||
|
struct amount_sat sat;
|
||
|
} scidsat;
|
||
|
|
||
|
struct scidsat * load_scid_file(FILE * scidfd);
|
||
|
|