Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 59617ebb746b67921856c00a63f943d43b0abeea authored by Junio C Hamano on 14 January 2006, 00:47:05 UTC
GIT 1.1.2
Tip revision: 59617eb
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