{
{
}
{
if (rc ==
sOKAY && tableId == TABLE_ADULT)
{
ADULT adult;
{
printf (
"Adult with id: %d and name: %s\n", adult.adult_id,
adult.adult_name);
}
}
else if (rc ==
sOKAY && tableId == TABLE_CHILD)
{
CHILD child;
{
printf (
"Child with id: %d and name: %s\n", child.child_id,
child.child_name);
}
}
{
printf ("Unknow member type, must be a secret member\n");
}
}
return rc;
}