1988-04-05 15:27:50 +00:00
|
|
|
/*
|
|
|
|
(c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Module: cap; implementation of CAP
|
|
|
|
Author: Ceriel J.H. Jacobs
|
1994-06-24 14:02:31 +00:00
|
|
|
Version: $Id$
|
1988-04-05 15:27:50 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
cap(u)
|
|
|
|
unsigned u;
|
|
|
|
{
|
1988-06-03 09:36:08 +00:00
|
|
|
register unsigned *p = &u;
|
|
|
|
|
|
|
|
if (*p >= 'a' && *p <= 'z') *p += 'A'-'a';
|
1988-04-05 15:27:50 +00:00
|
|
|
}
|