#ifndef BCPR_KISS_H #define BCPR_KISS_H #include "bcpr/bcpr.h" typedef struct bcpr_kiss_pty { int master_fd; int slave_fd; char link_path[128]; int idx; } bcpr_kiss_pty_t; int bcpr_kiss_pty_open(bcpr_kiss_pty_t *kp, int idx, const char *link_path, const char *state_dir); void bcpr_kiss_pty_close(bcpr_kiss_pty_t *kp); #endif