Exemple #1
0
int main (int argc, char *argv[])
{
    int i = 0;
    while (i < 1000)
        i += docalling (get_input (), &String::funcOne);
    non_existent ("done", i);
    return 0;
}
Exemple #2
0
int String::funcOne (int delim) const
{
    int i;
    for (i = 0; i < delim; i++)
        non_existent(data, i);

    return 1;
}
Exemple #3
0
static void hooray ()
{
  non_existent (1);
}
Exemple #4
0
static void hooray3 (struct S *p)
{
  non_existent (p, 2);
}
Exemple #5
0
static void hooray1 (struct S *p)
{
  non_existent (p, 1);
}
Exemple #6
0
static void hooray7 (struct S *p)
{
  non_existent (p, 7);
}
Exemple #7
0
static void hooray6 (struct S *p)
{
  non_existent (p, 6);
}
Exemple #8
0
static void hooray5 (struct S *p)
{
  non_existent (p, 5);
}
Exemple #9
0
static void hooray4 (struct S *p)
{
  non_existent (p, 3);
}
Exemple #10
0
static void hiphip (void (*f)())
{
    non_existent (2);
    f ();
}