Staging
v0.5.1
Revision 8a263aeb4f913e04e18248eb4d370157f1d253e6 authored by Junio C Hamano on 16 January 2006, 06:22:23 UTC, committed by Junio C Hamano on 16 January 2006, 06:22:23 UTC
3 parent s 59617eb + 181dc77 + ae4a352
Raw File
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