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

#ifndef _SYSTEMINFO_H
#define _SYSTEMINFO_H

#include <stdbool.h>

const char *architecture(void);
const char *useragent(void);
bool is_win7(void);
bool is_win8dotzero_or_below(void);

#endif