Staging
v0.8.1
https://github.com/git/git
Revision 6ab58895cd951f6f5c96fa432afb122cfeb12746 authored by Junio C Hamano on 24 December 2005, 08:02:08 UTC, committed by Junio C Hamano on 24 December 2005, 08:02:08 UTC
Signed-off-by: Junio C Hamano <junkio@cox.net>
2 parent s c63da8d + ac44f3e
Raw File
Tip revision: 6ab58895cd951f6f5c96fa432afb122cfeb12746 authored by Junio C Hamano on 24 December 2005, 08:02:08 UTC
GIT 1.0.4
Tip revision: 6ab5889
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