/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License ("CDDL"), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
*/
/*
* Copyright 2013 Garrett D'Amore <garrett@damore.org>
* Copyright 2010 Nexenta Systems, Inc. All rights reserved.
*/
/*
* This file contains the implementation of various functional forms
* of the ctype tests, specifically the required by ISO C. These are defined
* in the "C" (POSIX) locale.
*/
#include "lint.h"
#include <ctype.h>
#include <locale.h>
#include "localeimpl.h"
#include "_ctype.h"
#include "lctype.h"
/*
* We are supplying functional forms, so make sure to suppress any macros
* we might have imported.
*/
/*
* Performance note: ASCII test is *much* faster, as we can avoid expensive
* function call overhead. This is the hot case, so we try to do that
* whenever possible. As far as we know, *every* encoding we support
* is a strict superset of ASCII. So we can make things faster by trying
* ASCII first, and only then falling to locale specific checks.
*/
static int
{
}
int \
{ \
} \
\
int \
{ \
}