blob: fc54a3e7c9793847d6866d93f536791f0cb6dbf5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* ISC license. */
#include <sys/types.h>
#include <string.h>
#include <skalibs/buffer.h>
ssize_t buffer_putsflush (buffer *b, char const *s)
{
return buffer_putflush(b, s, strlen(s)) ;
}
|