1 /* This file is part of the Project Athena Zephyr Notification System.
2 * It contains source for the ZFormatNoticeList function.
4 * Created by: Robert French
6 * Copyright (c) 1987,1991 by the Massachusetts Institute of Technology.
7 * For copying and distribution information, see the file
13 Code_t
ZFormatNoticeList(notice
, list
, nitems
, buffer
, ret_len
,
20 Z_AuthProc cert_routine
;
22 char header
[Z_MAXHEADERLEN
];
28 if ((retval
= Z_FormatHeader(notice
, header
, sizeof(header
), &hdrlen
,
29 cert_routine
)) != ZERR_NONE
)
33 for (i
=0;i
<nitems
;i
++)
34 size
+= strlen(list
[i
])+1;
36 *ret_len
= hdrlen
+size
;
38 /* *ret_len can never be zero here, no need to worry about malloc(0). */
39 if (!(*buffer
= (char *) malloc((unsigned)*ret_len
)))
42 (void) memcpy(*buffer
, header
, hdrlen
);
46 for (;nitems
;nitems
--, list
++) {
48 (void) memcpy(ptr
, *list
, i
);