repo.or.cz
/
netsniff-ng.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
bpfc: add gnu as style %-register prefix
[netsniff-ng.git]
/
ioexact.h
blob
c69552bf82f2aa33b2c831f94af2f7bafe444a4b
1
#ifndef IOEXACT_H
2
#define IOEXACT_H
3
4
#include <stdbool.h>
5
6
extern
ssize_t
read_exact
(
int
fd
,
void
*
buf
,
size_t
len
,
bool
mayexit
);
7
extern
ssize_t
write_exact
(
int
fd
,
void
*
buf
,
size_t
len
,
bool
mayexit
);
8
9
#endif
/* IOEXACT_H */