Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: e1d04f8aad59397cbd55e72bf8a1bd75606f5350 authored by Junio C Hamano on 03 October 2005, 23:26:51 UTC
GIT 0.99.8a
Tip revision: e1d04f8
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