|
|
BSD 4.3reno
/* qb2str.c - qbuf to string */
#ifndef lint
static char *rcsid = "$Header: /var/lib/cvsd/repos/CSRG/43BSDReno/contrib/isode-beta/psap/qb2str.c,v 1.1.1.1 2018/04/24 16:12:56 root Exp $";
#endif
/*
* $Header: /var/lib/cvsd/repos/CSRG/43BSDReno/contrib/isode-beta/psap/qb2str.c,v 1.1.1.1 2018/04/24 16:12:56 root Exp $
*
*
* $Log: qb2str.c,v $
* Revision 1.1.1.1 2018/04/24 16:12:56 root
* BSD 4.3reno
*
* Revision 7.0 89/11/23 22:13:30 mrose
* Release 6.0
*
*/
/*
* NOTICE
*
* Acquisition, use, and distribution of this module and related
* materials are subject to the restrictions of a license agreement.
* Consult the Preface in the User's Manual for the full terms of
* this agreement.
*
*/
/* LINTLIBRARY */
#include <stdio.h>
#include "psap.h"
/* */
char *qb2str (q)
register struct qbuf *q;
{
register int len;
register char *b,
*d;
register struct qbuf *p;
len = 0;
for (p = q -> qb_forw; p != q; p = p -> qb_forw)
len += p -> qb_len;
q -> qb_len = len;
if ((b = d = malloc ((unsigned) (len + 1))) == NULL)
return NULLCP;
for (p = q -> qb_forw; p != q; p = p -> qb_forw) {
bcopy (p -> qb_data, d, p -> qb_len);
d += p -> qb_len;
}
*d = NULL;
return b;
}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.