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

⟦c2db334ae⟧ TextFile

    Length: 1061 (0x425)
    Types: TextFile
    Notes: UNIX file
    Names: »conv.3«

Derivation

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

TextFile

.ig
	@(#)conv.3	2.1	7/1/84
	@(#)Copyright (C) 1983 by National Semiconductor Corp.
..
.TH CONV 3
.SH NAME
toupper, tolower, toascii \- translate characters
.SH SYNOPSIS
.nf
.B #include <ctype.h>
.PP
.B int toupper (c)
.B int c;
.PP
.B int tolower (c)
.B int c;
.PP
.B int toascii (c)
.B int c;
.SH DESCRIPTION
.I Toupper
and
.I tolower
are macros that convert between upper- and lower-case characters.
.I Toupper
requires a lower-case letter as its argument;
its result is the corresponding upper-case letter.
.I Tolower
requires an upper-case letter as its argument;
its result is the corresponding lower-case letter.
Arguments outside the domain cause undefined results.
.PP
.I Toascii
yields its argument with all bits turned off that are not
part of a standard
.SM ASCII
character;
it is intended for compatibility with other systems.
.SH CAVEATS
.I Toupper
and
.I tolower
are equivalent to the System V macros
.I _toupper
and
.IR _tolower .
They are
.I not
the same as the System V functions
.I toupper
and
.IR tolower .
.SH "SEE ALSO"
ctype(3), getc(3S).