10 lines
191 B
C
10 lines
191 B
C
#ifndef IQBASIC_H
|
|
#define IQBASIC_H
|
|
|
|
void vario_send(int fd, const char *line);
|
|
int vario_recv(int fd, char *buf, int maxlen);
|
|
int vario_open(char *device);
|
|
void vario_close(int fd);
|
|
|
|
#endif
|