2001-02-04 01:28:45 +00:00
|
|
|
#include "buffer.h"
|
|
|
|
|
2005-04-23 15:50:16 +00:00
|
|
|
int buffer_putflush(buffer* b,const char* x,unsigned long int len) {
|
2001-02-04 01:28:45 +00:00
|
|
|
if (buffer_put(b,x,len)<0) return -1;
|
|
|
|
if (buffer_flush(b)<0) return -1;
|
|
|
|
return 0;
|
|
|
|
}
|