Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changeset 240

Show
Ignore:
Timestamp:
02/05/10 05:33:35 (15 years ago)
Author:
sean
Message:

<http://d.puremagic.com/issues/show_bug.cgi?id=3582> core.stdc.ctype functions are not pure

'pure' qualifier removed.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/import/core/stdc/ctype.d

    r205 r240  
    88 * 
    99 *          Copyright Sean Kelly 2005 - 2009. 
    1010 * Distributed under the Boost Software License, Version 1.0. 
    1111 *    (See accompanying file LICENSE_1_0.txt or copy at 
    1212 *          http://www.boost.org/LICENSE_1_0.txt) 
    1313 */ 
    1414module core.stdc.ctype; 
    1515 
    1616extern (C): 
    1717nothrow: 
    18 pure: 
    1918@safe: 
    2019 
    2120int isalnum(int c); 
    2221int isalpha(int c); 
    2322int isblank(int c); 
    2423int iscntrl(int c); 
    2524int isdigit(int c); 
    2625int isgraph(int c); 
    2726int islower(int c); 
    2827int isprint(int c);