You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
175 B
C
8 lines
175 B
C
24 years ago
|
#include "buffer.h"
|
||
|
|
||
|
int buffer_putflush(buffer* b,const char* x,unsigned int len) {
|
||
|
if (buffer_put(b,x,len)<0) return -1;
|
||
|
if (buffer_flush(b)<0) return -1;
|
||
|
return 0;
|
||
|
}
|