37 lines
752 B
C
37 lines
752 B
C
/* Copyright (c) 1984 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
#ident "@(#)acctdisk.c 1.1 94/10/31 SMI" /* from S5R3 acct:acctdisk.c 1.4 */
|
|
/*
|
|
* acctdisk <dtmp >dtacct
|
|
* reads std.input & converts to tacct.h format, writes to output
|
|
* input:
|
|
* uid name #blocks
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include "acctdef.h"
|
|
#include <stdio.h>
|
|
#include "tacct.h"
|
|
|
|
struct tacct tb;
|
|
char ntmp[NSZ+1];
|
|
|
|
main(argc, argv)
|
|
char **argv;
|
|
{
|
|
tb.ta_dc = 1;
|
|
while(scanf("%hu\t%s\t%f",
|
|
&tb.ta_uid,
|
|
ntmp,
|
|
&tb.ta_du) != EOF) {
|
|
|
|
CPYN(tb.ta_name, ntmp);
|
|
fwrite(&tb, sizeof(tb), 1, stdout);
|
|
}
|
|
}
|