1
0
mirror of https://git.zx2c4.com/wireguard-windows synced 2024-11-10 16:59:18 +00:00
wireguard-windows/installer/fetcher/filelist.h
Jason A. Donenfeld 6ed37f30f5 global: bump date
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2022-01-06 17:28:13 +01:00

18 lines
398 B
C

/* SPDX-License-Identifier: GPL-2.0
*
* Copyright (C) 2020-2022 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