Staging
v0.5.1
swh:1:snp:c5feb7ee9221a3820c8879e85e8a18470c0b3afa
Raw File
Tip revision: d5bc7eecbbb0b9f6122708bf5cd62f78ebdaafd8 authored by Junio C Hamano on 25 September 2005, 07:36:26 UTC
GIT v0.99.7d
Tip revision: d5bc7ee
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