archie/prospero/lib/pfs/out_atrs.c
2024-05-27 16:13:40 +02:00

21 lines
404 B
C

/*
* Copyright (c) 1992 by the University of Southern California
*
* For copying and distribution information, please see the file <usc-copyr.h>
*/
#include <usc-copyr.h>
#include <pfs.h>
#include <pparse.h>
int
out_atrs(OUTPUT out, PATTRIB at, int nesting)
{
int retval = PSUCCESS;
for (; at; at = at->next)
if (!retval) retval = out_atr(out, at, nesting);
return retval;
}