initial commit

This commit is contained in:
Florian Stecker
2023-01-25 20:09:56 -05:00
commit 58069c77d5
7 changed files with 583 additions and 0 deletions

9
iqbasic.h Normal file
View File

@@ -0,0 +1,9 @@
#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