Files
cdba/cdba-server.h
Dmitry Baryshkov f6bd2d01d7 watch: split implementation to aseparate file
Split CDBA's watching code to a separate file.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
2024-03-30 18:06:19 +02:00

15 lines
272 B
C

#ifndef __BAD_H__
#define __BAD_H__
#include <stdbool.h>
#include <termios.h>
#include "cdba.h"
int tty_open(const char *tty, struct termios *old);
void cdba_send_buf(int type, size_t len, const void *buf);
#define cdba_send(type) cdba_send_buf(type, 0, NULL)
#endif