console.h 250 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef TRAFT_CONSOLE_H
#define TRAFT_CONSOLE_H

#ifdef __cplusplus
extern "C" {
#endif

#include <getopt.h>
#include <stdint.h>
#include "common.h"
#include "raftServer.h"

void console(RaftServer *pRaftServer);

#ifdef __cplusplus
}
#endif

#endif