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.
11 lines
279 B
11 lines
279 B
9 years ago
|
#ifndef LIGHTNING_NAMES_H
|
||
|
#define LIGHTNING_NAMES_H
|
||
|
#include "config.h"
|
||
9 years ago
|
#include "lightning.pb-c.h"
|
||
9 years ago
|
#include "state_types.h"
|
||
|
|
||
|
const char *state_name(enum state s);
|
||
8 years ago
|
enum state name_to_state(const char *name);
|
||
9 years ago
|
const char *pkt_name(Pkt__PktCase pkt);
|
||
9 years ago
|
#endif /* LIGHTNING_NAMES_H */
|