mirror of
https://github.com/aljazceru/lightning.git
synced 2026-02-02 20:54:23 +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);
|
|
|