mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
784 B
38 lines
784 B
#include "buffer.h" |
|
#include <mmap.h> |
|
|
|
static ssize_t op() { |
|
return 0; |
|
} |
|
|
|
void buffer_init_staticcontents(buffer* b, char* y, size_t len) { |
|
b->x=y; |
|
b->p=0; b->a=b->n=len; |
|
b->fd=-1; |
|
b->op=op; |
|
b->deinit=0; |
|
} |
|
|
|
#ifdef UNITTEST |
|
#include <assert.h> |
|
|
|
#undef UNITTEST |
|
#include "byte/byte_copy.c" |
|
#include "buffer/buffer_get.c" |
|
#include "buffer/buffer_put.c" |
|
#include "buffer/buffer_stubborn.c" |
|
#include "buffer/buffer_stubborn2.c" |
|
#include "buffer/buffer_flush.c" |
|
#include "buffer/buffer_feed.c" |
|
|
|
int main() { |
|
buffer b; |
|
buffer_init_staticcontents(&b, "fnord", 5); |
|
char tmp[6]; |
|
assert(buffer_get(&b, tmp, 6) == 5); |
|
assert(!memcmp(tmp,"fnord",5)); |
|
buffer_init_staticcontents(&b, tmp, sizeof tmp); |
|
buffer_puts(&b, "foo\n"); |
|
assert(!memcmp(tmp, "foo\n", 4)); |
|
} |
|
#endif
|
|
|