You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "stralloc.h"
|
|
#include "buffer.h"
|
|
|
|
static int dummyreadwrite(int fd,char* buf,unsigned long int len) {
|
|
(void)fd;
|
|
(void)buf;
|
|
(void)len;
|
|
return 0;
|
|
}
|
|
|
|
void buffer_fromsa(buffer* b,stralloc* sa) {
|
|
b->x=sa->s;
|
|
b->p=0;
|
|
b->n=sa->len;
|
|
b->a=sa->a;
|
|
b->fd=0;
|
|
b->op=dummyreadwrite;
|
|
}
|