swh:1:snp:6df5a50b8107b6bbe1e51d0239d816a7503c536a
Raw File
Tip revision: 99977bd5fdeabbd0608a70e9411c243007ec4ea2 authored by Junio C Hamano on 07 September 2005, 22:59:24 UTC
GIT 0.99.6
Tip revision: 99977bd
pkt-line.h
#ifndef PKTLINE_H
#define PKTLINE_H

/*
 * Silly packetized line writing interface
 */
void packet_flush(int fd);
void packet_write(int fd, const char *fmt, ...) __attribute__((format (printf, 2, 3)));

int packet_read_line(int fd, char *buffer, unsigned size);

#endif
back to top