deklaration und definition unterscheidet man bei funktionen.
Code:
void foo(int bar); // deklaration

void foo(int bar) // definieren
{
   //...
}