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
|
|
|
*/
|
2018-06-25 20:22:37 +00:00
|
|
|
#include "libm2.h"
|
1988-04-05 15:27:50 +00:00
|
|
|
|
2018-06-25 20:22:37 +00:00
|
|
|
void cap(unsigned int u)
|
1988-04-05 15:27:50 +00:00
|
|
|
{
|
2018-06-25 20:22:37 +00:00
|
|
|
register unsigned* p = &u;
|
1988-06-03 09:36:08 +00:00
|
|
|
|
2018-06-25 20:22:37 +00:00
|
|
|
if (*p >= 'a' && *p <= 'z')
|
|
|
|
*p += 'A' - 'a';
|
1988-04-05 15:27:50 +00:00
|
|
|
}
|