blob: cf2f70ea357a7bc50f87de2db4a013ca5d92af0d (
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
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <unistd.h>
#include <assert.h>
#include <errno.h>
#include "config.h"
#include "env.h"
#include "fs.h"
#include "parser.h"
#include "context.h"
#include "ui.h"
#include "cgci.h"
void init()
{
unsetenv("HOME");
unsetenv("USER");
init_context();
init_config();
}
void deinit()
{
deinit_context();
deinit_config();
}
int main(int argc, char **argv, char** envp)
{
if (argc > 1)
{
argv_to_path(argc, argv);
}
init();
if (context.project && !strcmp(context.project, "assets"))
{
print_asset(context.action);
}
else
{
print_html();
}
deinit();
return 0;
}
|