blob: ad6f4b7fc1e8b4278d784482dd86ecbfe1688cc8 [file] [log] [blame]
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +01001#ifndef _CPIO_H
2#define _CPIO_H
3
4#include <stdbool.h>
5#include <stddef.h>
6
Wedson Almeida Filho9ee60e92018-07-23 18:56:56 +01007#include "memiter.h"
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +01008
Wedson Almeida Filho9ee60e92018-07-23 18:56:56 +01009bool cpio_next(struct memiter *iter, const char **name, const void **contents,
Andrew Scull4f170f52018-07-19 12:58:20 +010010 size_t *size);
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010011
Andrew Scull4f170f52018-07-19 12:58:20 +010012#endif /* _CPIO_H */