libowfat/buffer/buffer_puts.c

7 lines
120 B
C
Raw Normal View History

2001-02-04 01:28:45 +00:00
#include "str.h"
#include "buffer.h"
int buffer_puts(buffer* b,const char* x) {
2001-02-05 17:11:20 +00:00
return buffer_put(b,x,str_len(x));
2001-02-04 01:28:45 +00:00
}