Beispiel #1
0
t_status		set_show_pipe(i_set			setid,
				      mt_margin			margin)
{
  if (set_show_ll(setid, margin) != STATUS_OK)
    CORE_ESCAPE("unable to show the linked-list set");

  CORE_LEAVE();
}
t_error			set_show_pipe(i_set			setid)
{
  t_error		retval;

  SET_ENTER(set);

  retval = set_show_ll(setid);

  SET_LEAVE(set, retval);
}