Deleted Added
full compact
isctype.c (7656) isctype.c (29818)
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 158 unchanged lines hidden (view full) ---

167
168#undef toupper
169int
170toupper(c)
171 int c;
172{
173 return (__toupper(c));
174}
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 158 unchanged lines hidden (view full) ---

167
168#undef toupper
169int
170toupper(c)
171 int c;
172{
173 return (__toupper(c));
174}
175
176#undef digittoint
177int
178digittoint(c)
179 int c;
180{
181 return (__maskrune((c), 0xFF));
182}