]> git.ipfire.org Git - thirdparty/git.git/blame - pkt-line.h
GIT-VERSION-FILE: check ./version first.
[thirdparty/git.git] / pkt-line.h
CommitLineData
f3a3214e
LT
1#ifndef PKTLINE_H
2#define PKTLINE_H
3
07d68930
DS
4#include "git-compat-util.h"
5
f3a3214e
LT
6/*
7 * Silly packetized line writing interface
8 */
9void packet_flush(int fd);
4ec99bf0 10void packet_write(int fd, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
f3a3214e
LT
11
12int packet_read_line(int fd, char *buffer, unsigned size);
583b7ea3 13ssize_t safe_write(int, const void *, ssize_t);
f3a3214e
LT
14
15#endif