Skip to content
Snippets Groups Projects
Commit 836a280a authored by Ken Martin's avatar Ken Martin
Browse files

minor fix for c tests

parent 1538956b
No related branches found
No related tags found
No related merge requests found
void testProccessArgs(int* ac, char***av)
{
char** argv = *av;
if(*ac < 2)
{
return;
}
char** argv = *av;
if(strcmp(argv[1], "--with-threads") == 0)
{
printf("number of threads is %s\n", argv[2]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment