asterisk-chan-dongle/tools/tty.h

9 lines
207 B
C
Raw Normal View History

2023-05-25 08:30:27 +00:00
#ifndef TTY_H_INCLUDED
#define TTY_H_INCLUDED
int opentty (const char * dev);
void closetty(const char * dev, int fd);
size_t write_all (int fd, const char* buf, size_t count);
#endif /* TTY_H_INCLUDED */