-
Notifications
You must be signed in to change notification settings - Fork 0
/
wrapper.c
42 lines (37 loc) · 1.01 KB
/
wrapper.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
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <dirent.h>
#include <pwd.h>
//External Libraries
#include <appimage/appimage.h>
#include <ezxml.h>
#include <aisap.h>
#define MAX_DIR_LEN 512
#define MAX_FILE_LENGTH 256 //might wanna look at these values in the future
#define VERBOSE 0
#define PERMISSIONS 0755
#include "lib/localupdate.h"
#include "functions/scrape.h"
#include "functions/betterexec.h"
#include "functions/extra.h"
#include "functions/meta.h"
#include "functions/checkfile.h"
#include "functions/internal.h"
#include "functions/extract.h"
#include "functions/name.h"
#include "functions/updatable.h"
#include "commands/integrate.h"
#include "commands/remove.h"
#include "commands/uninstall.h"
#include "commands/install.h"
#include "commands/list.h"
#include "commands/reinstall.h"
#include "commands/update.h"
#include "commands/find.h"
#include "commands/run.h"
#include "commands/permissions.h"
#include "commands/upgrade.h"