eris/buffer_puts.c

7 lines
120 B
C
Raw Normal View History

2011-08-16 14:36:11 -06:00
#include "str.h"
#include "buffer.h"
int buffer_puts(buffer* b,const char* x) {
return buffer_put(b,x,str_len(x));
}