DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦363563795⟧ TextFile

    Length: 441 (0x1b9)
    Types: TextFile
    Names: »card16.c«

Derivation

└─⟦8648bda34⟧ Bits:30007244 EUUGD5_II: X11R5
    └─⟦b23e377d7⟧ »./contrib-2/contrib-2.00« 
        └─⟦0ed22c3ba⟧ 
            └─⟦this⟧ »contrib/lib/Xpex/clients/Xpex/pexscope/card16.c« 

TextFile

/* $Header: card16.c,v 2.2 91/09/11 15:52:03 sinyaw Exp $ */
#include <stdio.h>
#include <X11/X.h>
#include "PEX.h"
#include "PEXprotost.h"

void
pexpr_array_of_card16( str, count, pArray, bytes_read)
	int count;
	CARD16 *pArray;
	int  *bytes_read;
{
	*bytes_read = count * sizeof(CARD16);

	(void) fprintf( stderr, "%s:", str);

	while( count--) {
		(void) fprintf( stderr, "%u ", *pArray);
		pArray++;
	}
	(void) fprintf( stderr, "\n");
}