File: io.h

package info (click to toggle)
quasselc 0~git20170114-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 252 kB
  • sloc: ansic: 2,164; makefile: 68
file content (7 lines) | stat: -rw-r--r-- 174 bytes parent folder | download
1
2
3
4
5
6
7
#ifndef IO_H
#define IO_H

extern int write_io(GIOChannel *handle, const char* data, int len);
extern int read_io(GIOChannel *handle, char *buf, int len);

#endif /* IO_H */