mirror of
https://github.com/git/git.git
synced 2024-11-01 23:07:55 +01:00
4ec99bf080
GCC's format __attribute__ is good for checking errors, especially with -Wformat=2 parameter. This fixes most of the reported problems against 2005-08-09 snapshot.
12 lines
270 B
C
12 lines
270 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, ...) __attribute__((format (printf, 2, 3)));
|
|
|
|
int packet_read_line(int fd, char *buffer, unsigned size);
|
|
|
|
#endif
|