mirror of https://github.com/nealey/eris.git
8 lines
175 B
C
8 lines
175 B
C
|
#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;
|
||
|
}
|