blob: a04d0db0c6f45dd389b33851149a73d7f4c134c7 [file] [log] [blame]
Andrew Scull18834872018-10-12 11:48:09 +01001/*
2 * Copyright 2018 Google LLC
3 *
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 Filho987c0ff2018-06-20 16:34:38 +010018
19#include <stdbool.h>
20#include <stddef.h>
21
Andrew Scull18c78fc2018-08-20 12:57:41 +010022#include "hf/memiter.h"
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010023
Wedson Almeida Filho9ee60e92018-07-23 18:56:56 +010024bool cpio_next(struct memiter *iter, const char **name, const void **contents,
Andrew Scull4f170f52018-07-19 12:58:20 +010025 size_t *size);