libowfat/buffer/buffer_fromsa.c

7 lines
131 B
C
Raw Normal View History

#include "stralloc.h"
#include "buffer.h"
2015-02-04 02:57:56 +00:00
void buffer_fromsa(buffer* b,const stralloc* sa) {
2013-09-09 19:03:52 +00:00
buffer_frombuf(b,sa->s,sa->len);
}