blob: f8e8c254ededed8c07442c31a042f60503bc13f8 [file] [log] [blame]
Andrew Scull18834872018-10-12 11:48:09 +01001/*
Andrew Walbran692b3252019-03-07 15:51:31 +00002 * Copyright 2018 The Hafnium Authors.
Andrew Scull18834872018-10-12 11:48:09 +01003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * https://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Andrew Scullfbc938a2018-08-20 14:09:28 +010017#pragma once
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010018
19#include <stdbool.h>
20#include <stddef.h>
21#include <stdint.h>
22
23struct memiter {
24 const char *next;
25 const char *limit;
26};
27
28void memiter_init(struct memiter *it, const void *data, size_t size);
29bool memiter_parse_uint(struct memiter *it, uint64_t *value);
30bool memiter_parse_str(struct memiter *it, struct memiter *str);
31bool memiter_iseq(const struct memiter *it, const char *str);
David Brazdil7a462ec2019-08-15 12:27:47 +010032void memiter_dlog_str(struct memiter *it);
Wedson Almeida Filho9ee60e92018-07-23 18:56:56 +010033bool memiter_advance(struct memiter *it, size_t v);
David Brazdil7a462ec2019-08-15 12:27:47 +010034
David Brazdil74e9c3b2019-08-28 11:09:08 +010035const void *memiter_base(const struct memiter *it);
36size_t memiter_size(const struct memiter *it);