diff buffer_heap.c @ 611:0fa2f6606c5e

buffer: read and write The buffer_pread and buffer_pwrite functions provide a POSIX pread and pwrite inspired API to get and set parts of a memory buffer. The buffer_read and buffer_write functions wrap the pread/pwrite variants and update the current buffer offset. Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
author Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
date Tue, 11 Jul 2017 08:58:22 +0300
parents 6795f8427fed
children 1c4d7ff0a682
line wrap: on
line diff
--- a/buffer_heap.c	Thu Oct 11 14:26:12 2018 -0400
+++ b/buffer_heap.c	Tue Jul 11 08:58:22 2017 +0300
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
+ * Copyright (c) 2017-2018 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to deal
@@ -27,4 +27,5 @@
 	.free = free,
 	.clear = generic_buffer_clear_memset,
 	.copyin = generic_buffer_copyin_memcpy,
+	.copyout = generic_buffer_copyout_memcpy,
 };