blob: 3b6c977594e598dc04190d7e36572f71352c5d57 (
plain)
1
2
3
4
5
6
7
8
|
#include <stdio.h>
#include "../flag.h"
int main() {
int test1 = flag_int("-j", 69, "<number of cores> Specifies the number of cores to be used.");
printf("This is the first test argument: %d\n", test1);
return 0;
}
|