7 lines
131 B
C
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);
|
|
}
|