libowfat/buffer/buffer_fromsa.c
2015-02-04 02:57:56 +00:00

7 lines
131 B
C

#include "stralloc.h"
#include "buffer.h"
void buffer_fromsa(buffer* b,const stralloc* sa) {
buffer_frombuf(b,sa->s,sa->len);
}