Ejemplo n.º 1
0
int main(int argc, char *argv[])
{
    srand(time(NULL));
    //srand(0);
    testme();
    return 0;
}
Ejemplo n.º 2
0
int main(int argc, char *argv[])
{
    str[MAX_STR_LEN] = '\0';
    srand(time(NULL));
    testme();
    return 0;
}
Ejemplo n.º 3
0
int main(int argc, char *argv[])
{
    SelectStream(2);
    PutSeed(-1);
    //srand(time(NULL));
    testme();
    return 0;
}
Ejemplo n.º 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;
}
Ejemplo n.º 5
0
Archivo: test.c Proyecto: janbre/NUTS
int main() {
	testme();
}
Ejemplo n.º 6
0
static inline void
stupid_func(st s)
{
        testme(s.a, s.b, s.c);
}