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 "buffer.h"
|
|
|
|
void buffer_seek(buffer* b,size_t len) {
|
|
size_t n=b->p+len;
|
|
if (n<b->p) n=b->p;
|
|
if (n>b->n) n=b->n;
|
|
b->p=n;
|
|
}
|