blob: b4c030434193c3c62a9034095bba18734996c7c9 (
plain) (
blame)
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
|
/* See LICENSE file for copyright and license details. */
#include "../libsyscalls.h"
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#if defined(__clang__)
# pragma clang diagnostic ignored "-Wunsafe-buffer-usage" /* clang is just being silly */
#endif
int
main(int argc, char **argv)
{
enum libsyscalls_datatype_section section;
unsigned long long int value;
size_t bits;
char *end;
enum libsyscalls_error err;
if (argc != 4) {
usage:
fprintf(stderr, "usage error\n");
return 1;
}
section = (enum libsyscalls_datatype_section)atoi(argv[1]);
errno = 0;
value = strtoull(argv[2], &end, 16);
if (errno || *end)
goto usage;
bits = (size_t)atol(argv[3]);
err = libsyscalls_section_value(value, bits, section, &value);
if (err == LIBSYSCALLS_E_INVAL) {
printf("inval\n");
goto out;
} else if (err) {
libsyscalls_perror(NULL, err);
return 1;
}
printf("%llX\n", value);
out:
if (fflush(stdout) || fclose(stdout)) {
perror(NULL);
return 1;
}
return 0;
}
|