Пример #1
0
/* Convert an NCprojection instance into a string
   that can be used with the url
*/
char*
dumpprojections(NClist* projections)
{
    char* tmp;
    int v = dceverbose;
    dceverbose = 1;
    tmp = dcelisttostring(projections,",");
    dceverbose = v;
    return tmp;
}
Пример #2
0
char*
dumpsegments(NClist* segments)
{
    return dcelisttostring(segments,".");
}
Пример #3
0
char*
dumpselections(NClist* selections)
{
    return dcelisttostring(selections,"&");
}
Пример #4
0
/* Convert an NCprojection instance into a string
   that can be used with the url
*/
char*
dumpprojections(NClist* projections)
{
    return dcelisttostring(projections,",");
}