https://github.com/git/git
Raw File
Tip revision: 60d64db4614b1007ca37c228923ec1964d5ad394 authored by Junio C Hamano on 15 November 2005, 02:39:18 UTC
GIT 0.99.9i aka 1.0rc2
Tip revision: 60d64db
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