mirror of https://github.com/nealey/eris.git
7 lines
120 B
C
7 lines
120 B
C
|
#include "str.h"
|
||
|
#include "buffer.h"
|
||
|
|
||
|
int buffer_puts(buffer* b,const char* x) {
|
||
|
return buffer_put(b,x,str_len(x));
|
||
|
}
|