Exemple #1
0
int main(int argc, char *argv[])
{
    srand(time(NULL));
    //srand(0);
    testme();
    return 0;
}
Exemple #2
0
int main(int argc, char *argv[])
{
    str[MAX_STR_LEN] = '\0';
    srand(time(NULL));
    testme();
    return 0;
}
Exemple #3
0
int main(int argc, char *argv[])
{
    SelectStream(2);
    PutSeed(-1);
    //srand(time(NULL));
    testme();
    return 0;
}
Exemple #4
0
int main(int argc, char *argv[])
{
	// seed the random number generator
	// do this only once per execution

    srand(time(NULL));

    // call the testme() function

    testme();

    // return exit code 0 and exit program

    return 0;
}
Exemple #5
0
int main() {
	testme();
}
Exemple #6
0
static inline void
stupid_func(st s)
{
        testme(s.a, s.b, s.c);
}