repo.or.cz
/
scheduler.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit
[scheduler.git]
/
main.c
blob
08a0c17fb3f90b54a3cc2d909774e627754174c7
1
#include <stdio.h>
2
3
#include
"parser.h"
4
#include
"main.h"
5
6
struct
task
*
tasks
;
7
8
int
main
(
int
argc
,
char
**
argv
) {
9
printf
(
"Initializing scheduler with file %s
\n
"
,
argv
[
1
]);
10
tasks
=
parse
(
argv
[
1
]);
11
}