aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/installer/fetcher/systeminfo.h
blob: 12c3444ac3bdf04b1f9a9717550fae271722fe15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0
 *
 * Copyright (C) 2020-2021 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);

#endif