isupper.3 (a385e04b4784eb790fde3bb0385c8a2a7e81bc4b) | isupper.3 (110e1704d33d8632ce8febdd36a0143ca8b2ef0e) |
---|---|
1.\" Copyright (c) 1991, 1993 2.\" The Regents of the University of California. All rights reserved. 3.\" 4.\" This code is derived from software contributed to Berkeley by 5.\" the American National Standards Committee X3, on Information 6.\" Processing Systems. 7.\" 8.\" Redistribution and use in source and binary forms, with or without --- 39 unchanged lines hidden (view full) --- 48.In ctype.h 49.Ft int 50.Fn isupper "int c" 51.Sh DESCRIPTION 52The 53.Fn isupper 54function tests for any upper-case letter. 55The value of the argument must be representable as an | 1.\" Copyright (c) 1991, 1993 2.\" The Regents of the University of California. All rights reserved. 3.\" 4.\" This code is derived from software contributed to Berkeley by 5.\" the American National Standards Committee X3, on Information 6.\" Processing Systems. 7.\" 8.\" Redistribution and use in source and binary forms, with or without --- 39 unchanged lines hidden (view full) --- 48.In ctype.h 49.Ft int 50.Fn isupper "int c" 51.Sh DESCRIPTION 52The 53.Fn isupper 54function tests for any upper-case letter. 55The value of the argument must be representable as an |
56.Vt unsigned char | 56.Vt "unsigned char" |
57or the value of 58.Dv EOF . 59.Pp 60In the ASCII character set, this includes the following characters 61(with their numeric values shown in octal): 62.Pp 63.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ 64.It "\&101\ ``A'' \t102\ ``B'' \t103\ ``C'' \t104\ ``D'' \t105\ ``E''" --- 31 unchanged lines hidden --- | 57or the value of 58.Dv EOF . 59.Pp 60In the ASCII character set, this includes the following characters 61(with their numeric values shown in octal): 62.Pp 63.Bl -column \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ \&000_``0''__ 64.It "\&101\ ``A'' \t102\ ``B'' \t103\ ``C'' \t104\ ``D'' \t105\ ``E''" --- 31 unchanged lines hidden --- |