source: experiments/LL_API_test_1/lltest.c @ 16

Revision 16, 322 bytes checked in by mmatloka, 14 years ago (diff)

add experiments

Line 
1#include <stdio.h>
2#include <llapi.h>
3
4int main(int argc, char *argv[])
5{
6                        LL_job test;
7                        int status;
8                    printf("start\n");
9                        status = llsubmit(argv[1],NULL,NULL,&test,LL_JOB_VERSION);
10                    llfree_job_info(&test,LL_JOB_VERSION);
11                        if(status==0)
12                        printf("done\n");
13                        else
14                                        printf("error\n");
15                        return 0;
16}
Note: See TracBrowser for help on using the repository browser.