libowfat/buffer/buffer_putsflush.c

7 lines
130 B
C

#include "str.h"
#include "buffer.h"
int buffer_putsflush(buffer* b,const char* x) {
return buffer_putflush(b,x,str_len(x));
}