aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler/blob.h
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2017-10-11 12:09:02 -0700
committerJason Ekstrand <[email protected]>2017-10-12 21:47:06 -0700
commit4d56ff0a714adfd763149ce98e3fa7437e14abac (patch)
treed030c08874cac33a3facc41f85f2604398348727 /src/compiler/blob.h
parent3af1c829891a4530682bce113fdd512d4f2de3c6 (diff)
compiler/blob: Constify the reader
Reviewed-by: Nicolai Hähnle <[email protected]> Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src/compiler/blob.h')
-rw-r--r--src/compiler/blob.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/compiler/blob.h b/src/compiler/blob.h
index 62105c8ebd9..e224dbbece0 100644
--- a/src/compiler/blob.h
+++ b/src/compiler/blob.h
@@ -78,9 +78,9 @@ struct blob {
* 2. blob->overrun should be false, (otherwise, too much was read).
*/
struct blob_reader {
- uint8_t *data;
- uint8_t *end;
- uint8_t *current;
+ const uint8_t *data;
+ const uint8_t *end;
+ const uint8_t *current;
bool overrun;
};
@@ -272,7 +272,7 @@ blob_write_string(struct blob *blob, const char *str);
* current value is unchanged before and after the call.
*/
void
-blob_reader_init(struct blob_reader *blob, uint8_t *data, size_t size);
+blob_reader_init(struct blob_reader *blob, const uint8_t *data, size_t size);
/**
* Read some unstructured, fixed-size data from the current location, (and
@@ -284,7 +284,7 @@ blob_reader_init(struct blob_reader *blob, uint8_t *data, size_t size);
*
* \return The bytes read (see note above about memory lifetime).
*/
-void *
+const void *
blob_read_bytes(struct blob_reader *blob, size_t size);
/**