summaryrefslogtreecommitdiff
path: root/lib/microtar/src/microtar-rockbox.h
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2021-11-26 14:37:36 +0000
committerAidan MacDonald <amachronic@protonmail.com>2021-11-27 13:13:35 +0000
commitc1709e3194855b93ffd6f68eaa750c6704b3e52f (patch)
tree485af751c5a6ee3cd85baf6be117099fbbf1f3ec /lib/microtar/src/microtar-rockbox.h
parent4052a9ddcfedcb6bc55f94e4ec5bc8e803e2dc7e (diff)
downloadrockbox-c1709e3194855b93ffd6f68eaa750c6704b3e52f.tar.gz
rockbox-c1709e3194855b93ffd6f68eaa750c6704b3e52f.zip
microtar: Update to latest upstream commit
This is a major overhaul of the library with some API changes and ease of use improvements, particularly for creating new archives. The updated functionality is intended to support a new X1000 installer framework. Change-Id: Icf192bb546831231d49303fbf529ef1c1ce8905c
Diffstat (limited to 'lib/microtar/src/microtar-rockbox.h')
-rw-r--r--lib/microtar/src/microtar-rockbox.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/microtar/src/microtar-rockbox.h b/lib/microtar/src/microtar-rockbox.h
new file mode 100644
index 0000000000..36acbb2bfe
--- /dev/null
+++ b/lib/microtar/src/microtar-rockbox.h
@@ -0,0 +1,29 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2021 Aidan MacDonald
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#ifndef MICROTAR_ROCKBOX_H
23#define MICROTAR_ROCKBOX_H
24
25#include "microtar.h"
26
27int mtar_open(mtar_t* tar, const char* filename, int flags);
28
29#endif