|
NAMEincatalogfeed - test if cell belongs to the catalog file See the file man1/alc_origin.1. SYNOPSIS#include "mut.h" int incatalogfeed(figname) char ∗figname; PARAMETER
DESCRIPTIONincatalogfeed checks a cell represented by its
figname being present in the catalog file with the 'F'
attribut. This means that the cell is a feed through, and does not have a
logical equivalent representation while being physicaly used.
RETURN VALUEincatalogfeed returns 0 if the cell does not belong to the catalog with the 'F' attribut, a value different from 0 if it does. EXAMPLE
#include "mut.h"
char ∗tell_if_incatalogfeed(name)
char ∗name;
{
return incatalogfeed(name) ? "Jawohl, mein Herr" : "Nein, danke";
}
SEE ALSOmbk(1), incatalog(3), incatalogdelete(3), incataloggds(3). See the file man1/alc_bug_report.1.
|