mirror of
https://github.com/linux-msm/cdba.git
synced 2026-02-25 13:11:56 -08:00
Split the function tty_open() to a separate file. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
13 lines
219 B
C
13 lines
219 B
C
#ifndef __BAD_H__
|
|
#define __BAD_H__
|
|
|
|
#include <stdbool.h>
|
|
#include <termios.h>
|
|
|
|
#include "cdba.h"
|
|
|
|
void cdba_send_buf(int type, size_t len, const void *buf);
|
|
#define cdba_send(type) cdba_send_buf(type, 0, NULL)
|
|
|
|
#endif
|