blob: 5f09c0738dedec157fa82fa4a790cd2396fff507 (
plain)
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
#ifndef COMMON_H
#define COMMON_H
#include <stdlib.h>
#include <stddef.h>
#include <stdint.h>
#include <sys/stat.h>
#define ARRAY_LEN(arr) sizeof(arr) / sizeof(arr[0])
#define GITHUB_API "https://api.github.com"
#define LUTRIS_API "https://lutris.net/api"
#define WINE_API LUTRIS_API "/runners/wine"
#define DXVK_API GITHUB_API"/repos/lutris/dxvk/releases"
#define INSTALLER_API LUTRIS_API "/installers/"
#define GAME_API LUTRIS_API "/games"
#define GAME_SEARCH_API GAME_API "?search=%s"
#define GAME_INSTALLER_API GAME_API "/%s/installers"
#ifndef NAME
#warning "no name specified, setting it to \"polecat\""
#define NAME "polecat"
#endif
#ifndef VERSION
#warning "no version specified, setting it to \"0.0.0\""
#define VERSION "0.0.0"
#endif
#define USER_AGENT NAME "/" VERSION
#define USAGE_STR "Usage: " NAME
#ifdef DEBUG
#define UNREACHABLE printf("unreachable code reached\n" __FILE__ ":L%i\n", __LINE__); exit(0);
#else
#define UNREACHABLE
#endif
#ifdef __GNUC__
#define UNUSED __attribute__((__unused__))
#else
#define UNUSED
#endif
#include <json.h>
// since json-c 0.13 json_object_array_length returns a size_t
#if defined(JSON_C_MINOR_VERSION) && JSON_C_MINOR_VERSION >= 13
#define JSON_LENGTH_TYPE size_t
#else
#define JSON_LENGTH_TYPE int
#endif
struct MemoryStruct {
uint8_t* memory;
size_t size;
};
struct Command {
char* name;
int (*func)(int, char**);
char* description;
};
enum flag_variants {
SINGLE = 1,
DOUBLE = 2,
BOTH = SINGLE + DOUBLE
};
struct Flag {
char* name;
enum flag_variants variant;
int (*func)(int, char**);
char* description;
};
void print_help(const struct Command*, size_t, const struct Flag*, size_t);
struct stat getStat(const char* path);
int isFile(const char*);
int isDir(const char*);
int makeDir(const char* path);
int removeDir(const char *path);
#endif
|