aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/installer/fetcher/filelist.h
blob: e058883718efc1bdf2e7a9d3b0ab51e443f140bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0
 *
 * Copyright (C) 2020 Jason A. Donenfeld. All Rights Reserved.
 */

#ifndef _FILELIST_H
#define _FILELIST_H

#include <stddef.h>
#include <stdbool.h>
#include <stdint.h>

enum { MAX_FILENAME_LEN = 0x400 };

bool extract_newest_file(char filename[static MAX_FILENAME_LEN], uint8_t hash[static 32], const char *list, size_t len, const char *arch);

#endif