mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
12 lines
231 B
C
12 lines
231 B
C
#ifndef PKTLINE_H
|
|
#define PKTLINE_H
|
|
|
|
/*
|
|
* Silly packetized line writing interface
|
|
*/
|
|
void packet_flush(int fd);
|
|
void packet_write(int fd, const char *fmt, ...);
|
|
|
|
int packet_read_line(int fd, char *buffer, unsigned size);
|
|
|
|
#endif
|