pkt-line.hon commit Add "git_path()" and "head_ref()" helper functions. (723c31f)
   1#ifndef PKTLINE_H
   2#define PKTLINE_H
   3
   4/*
   5 * Silly packetized line writing interface
   6 */
   7void packet_flush(int fd);
   8void packet_write(int fd, const char *fmt, ...);
   9
  10int packet_read_line(int fd, char *buffer, unsigned size);
  11
  12#endif