54 lines
991 B
C
54 lines
991 B
C
/* Copyright (c) 1990, 1991 UNIX System Laboratories, Inc. */
|
|
/* Copyright (c) 1988 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF */
|
|
/* UNIX System Laboratories, Inc. */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
/* #ident "@(#)sccs:lib/comobj/del_ba.c 6.3" */
|
|
#ident "$Revision: 1.5 $"
|
|
# include "../../hdr/defines.h"
|
|
|
|
|
|
char *
|
|
del_ba(dt,str)
|
|
register struct deltab *dt;
|
|
char *str;
|
|
{
|
|
register char *p;
|
|
char *sid_ba(), *date_ba();
|
|
|
|
p = str;
|
|
*p++ = CTLCHAR;
|
|
*p++ = BDELTAB;
|
|
*p++ = ' ';
|
|
*p++ = dt->d_type;
|
|
*p++ = ' ';
|
|
p = sid_ba(&dt->d_sid,p);
|
|
*p++ = ' ';
|
|
date_ba(&dt->d_datetime,p);
|
|
while (*p++)
|
|
;
|
|
--p;
|
|
*p++ = ' ';
|
|
copy(dt->d_pgmr,p);
|
|
while (*p++)
|
|
;
|
|
--p;
|
|
*p++ = ' ';
|
|
sprintf(p,"%d",dt->d_serial);
|
|
while (*p++)
|
|
;
|
|
--p;
|
|
*p++ = ' ';
|
|
sprintf(p,"%d",dt->d_pred);
|
|
while (*p++)
|
|
;
|
|
--p;
|
|
*p++ = '\n';
|
|
*p = 0;
|
|
return(str);
|
|
}
|