version 1.1.1.2, 2018/04/24 16:49:18
|
version 1.1.1.3, 2018/04/24 17:25:47
|
Line 21 struct sbuf {
|
Line 21 struct sbuf {
|
char *sb_data; /* Actual data */ |
char *sb_data; /* Actual data */ |
}; |
}; |
|
|
void sbfree _P((struct sbuf *)); |
void sbfree(struct sbuf *); |
void sbdrop _P((struct sbuf *, int)); |
void sbdrop(struct sbuf *, int); |
void sbreserve _P((struct sbuf *, int)); |
void sbreserve(struct sbuf *, int); |
void sbappend _P((struct socket *, struct mbuf *)); |
void sbappend(struct socket *, struct mbuf *); |
void sbcopy _P((struct sbuf *, int, int, char *)); |
void sbcopy(struct sbuf *, int, int, char *); |
|
|
#endif |
#endif |