-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.c
76 lines (66 loc) · 1.35 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License ("CDDL"), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
* http://www.illumos.org/license/CDDL.
*/
/*
* Copyright 2019 Alexander Eremin <alexander.r.eremin@gmail.com>
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <locale.h>
#include <errno.h>
#include "hwi.h"
void
err_fatal(char *s) {
(void) fprintf(stderr, "%s\n", s);
exit(1);
}
int
main(int argc, char **argv) {
int c;
(void) setlocale(LC_ALL, "");
if (argc == 1) {
sys_info();
cpu_info();
mem_info();
pci_info(VIDEO);
pci_info(NET);
drives_info();
return (0);
}
while ((c = getopt(argc, argv, ":cdmnsvV")) != -1) {
switch (c) {
case 'c':
cpu_info();
break;
case 'd':
drives_info();
break;
case 'm':
mem_info();
break;
case 'n':
pci_info(NET);
break;
case 's':
sys_info();
break;
case 'v':
pci_info(VIDEO);
break;
case 'V':
(void) fprintf(stderr, "hwi version %s\n", VERSION);
break;
default:
(void) fprintf(stderr, "Usage: hwi [ -c | -d | -m | -n | -s | -v | -V ]\n");
}
}
return (0);
}