diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/til_fb.c | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/src/til_fb.c b/src/til_fb.c index 3b604e4..8efa70a 100644 --- a/src/til_fb.c +++ b/src/til_fb.c @@ -381,6 +381,15 @@ void til_fb_rebuild(til_fb_t *fb)  } +/* accessor for getting the ops_context */ +void * til_fb_context(til_fb_t *fb) +{ +	assert(fb); + +	return fb->ops_context; +} + +  /* helpers for fragmenting incrementally */  int til_fb_fragment_slice_single(const til_fb_fragment_t *fragment, unsigned n_fragments, unsigned number, til_fb_fragment_t *res_fragment)  { | 
