Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pkt-line.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51d0cbe219f2f45bf3920441f09dfcc2744adb06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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