Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 17dff84b5e745ba17a5b3ae5591d79f96b165d48 authored by Junio C Hamano on 28 December 2005, 02:08:58 UTC
GIT 1.0.6
Tip revision: 17dff84
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