Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 87ce294c9129879f717f8749cae1c659e18a3823 authored by Junio C Hamano on 05 November 2005, 19:50:24 UTC
GIT 0.99.9d
Tip revision: 87ce294
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