view blobstat/output.c @ 379:a760a5eeed65

compal/audio/omr-guide: another avenue of investigation
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 10 Oct 2021 19:53:35 +0000
parents 99f72069d867
children
line wrap: on
line source

#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include "struct.h"

extern struct category *category_list;

print_output()
{
	struct category *p;
	u_long total = 0;

	for (p = category_list; p; p = p->next)
		total += p->accum;
	printf("total: 0x%lX (%lu) bytes\n", total, total);
	for (p = category_list; p; p = p->next)
		printf("%s: 0x%lX (%lu) bytes, %lu%% of total\n", p->name,
			p->accum, p->accum, p->accum * 100 / total);
	return(0);
}