|
NAMErflattenlofig - recursivly flatten a figure See the file man1/alc_origin.1. SYNOPSIS#include "mlu.h" void rflattenlofig(ptfig, concat, catal) lofig_list ∗ptfig; char concat; char catal; PARAMETERSDESCRIPTIONrflattenlofig recursivly flattens all the instances of the
figure pointed to by ptfig.
ERRORSNo errors can directly result from a call to rflattenlofig, but since it uses many other mbk functions, it may be a good error starting point. EXAMPLE
#include "mlu.h"
void flatten_my_amd2901()
{
loins_list ∗pt;
pt = getlofig("my_amd2901", 'A');
rflattenlofig(pt, YES, YES);
pt->NAME = "my_flattened_amd2901";
savelofig(pt);
}
SEE ALSOmbk(1), incatalog(3), mbkenv(3), lofig(3), addlofig(3), getlofig(3), dellofig(3), loadlofig(3), savelofig(3), flattenlofig(3), MBK_CATAL_NAME(1). See the file man1/alc_bug_report.1.
|