|
NAMEincataloggds - test if cell belongs to the catalog file See the file man1/alc_origin.1. SYNOPSIS#include "mut.h" int incataloggds(figname) char ∗figname; PARAMETER
DESCRIPTIONincataloggds checks a cell represented by its
figname being present in the catalog file with the 'G'
attribut. This means that the cell is a phantom of a gds cell.
RETURN VALUEincataloggds returns 0 if the cell does not belong to the catalog with the 'G' attribut, a value different from 0 if it does. EXAMPLE
#include "mut.h"
char ∗tell_if_incataloggds(name)
char ∗name;
{
return incataloggds(name) ? "Jawohl, es ist ein pad" : "Nein, keine";
}
SEE ALSOmbk(1), incatalog(3), incatalogdelete(3), incatalogfeed(3). See the file man1/alc_bug_report.1.
|