DataMuseum.dk

Presents historical artifacts from the history of:

ICL Comet 32

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

See our Wiki for more about ICL Comet 32

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦52b544e72⟧ TextFile

    Length: 757 (0x2f5)
    Types: TextFile
    Notes: UNIX file
    Names: »qsort.3«

Derivation

└─⟦26887b7e0⟧ Bits:30009717 Comet 32 harddisk image
    └─⟦28c352965⟧ »/a« UNIX Filesystem
        └─⟦this⟧ »usr/man/man3/qsort.3« 

TextFile

.ig
	@(#)qsort.3	2.1	7/1/84
	@(#)Copyright (C) 1983 by National Semiconductor Corp.
..
.TH QSORT 3 
.SH NAME
qsort \- quicker sort
.SH SYNOPSIS
.nf
.B qsort(base, nel, width, compar)
.B char *base;
.B int (*compar)();
.fi
.SH DESCRIPTION
.I Qsort
is an implementation
of the quicker-sort algorithm.
The first argument is a pointer to the base of the data;
the second is the number of elements;
the third is the width of an element
in bytes;
the last is the name of the comparison routine
to be called with two arguments that are pointers
to the elements being compared.
The routine must return
an integer less than, equal to, or greater than 0
to the value of the first argument being
less than, equal to, or greater than the second.
.SH "SEE ALSO"
sort(1)