Code

git config: don't allow --get-color* and variable type
[git.git] / pkt-line.h
1 #ifndef PKTLINE_H
2 #define PKTLINE_H
4 #include "git-compat-util.h"
6 /*
7  * Silly packetized line writing interface
8  */
9 void packet_flush(int fd);
10 void packet_write(int fd, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
12 int packet_read_line(int fd, char *buffer, unsigned size);
13 ssize_t safe_write(int, const void *, ssize_t);
15 #endif