magellan works
[sball] / src / sball.h
1 #ifndef SBALL_H_
2 #define SBALL_H_
3
4 struct sball;
5
6 struct sball *sball_open(const char *dev);
7 void sball_close(struct sball *sb);
8 int sball_fd(struct sball *sb);
9 int sball_read(struct sball *sb);
10
11 #endif  /* SBALL_H_ */