Click here to Skip to main content
15,893,161 members
Articles / Desktop Programming / MFC

Tiny C Runtime Library

Rate me:
Please Sign up or sign in to vote.
4.86/5 (60 votes)
25 Mar 20079 min read 333.7K   5.7K   123  
Reduce code bloat for those simple utility programs by using a streamlined C runtime - now with Unicode support!
// isctype.cpp

// based on:
// LIBCTINY - Matt Pietrek 2001
// MSDN Magazine, January 2001

// 08/12/06 (mv)

#include <windows.h>
#include <ctype.h>
#include "libct.h"

BEGIN_EXTERN_C

int iswctype(wint_t c, wctype_t type)
{
	WORD ret;
	GetStringTypeW(CT_CTYPE1, (LPCWSTR)&c, 1, &ret);
	if ((ret & type) != 0)
		return 1;
	return 0;
}

//int _ismbcspace(int c)	{return isspace(c);}
int isspace(int c)		{return ((c >= 0x09 && c <= 0x0D) || (c == 0x20));}
int iswspace(wint_t c)	{return iswctype(c, _BLANK);}

//int _ismbcupper(int c)	{return isupper(c);}
int isupper(int c)		{return (c >= 'A' && c <= 'Z');}
int iswupper(wint_t c)	{return iswctype(c, _UPPER);}

//int ismbcalpha(int c)	{return isalpha(c);}
int isalpha(int c)		{return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z');}
int iswalpha(wint_t c)	{return iswctype(c, _ALPHA);}

//int ismbcdigit(int c)	{return isdigit(c);}
int isdigit(int c)		{return (c >= '0' && c <= '9');}
int iswdigit(wint_t c)	{return iswctype(c, _DIGIT);}

//int ismbcxdigit(int c)	{return isxdigit(c);}
int isxdigit(int c)		{return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f');}
int iswxdigit(wint_t c)	{return iswctype(c, _HEX);}

//int ismbcalnum(int c)	{return isalnum(c);}
int isalnum(int c)		{return isalpha(c) || isdigit(c);}
int iswalnum(wint_t c)	{return iswctype(c, _ALPHA|_DIGIT);}

//int ismbcprint(int c)	{return isprint(c);}
int isprint(int c)		{return c >= ' ';}
int iswprint(wint_t c)	{return iswctype(c, (wctype_t)(~_CONTROL));}

END_EXTERN_C

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
Mike_V is currently a student at UCLA.

After a few years on the Dark Side, he reformed and now chants "Death to VB." His computer-related interests include C++, C#, and ASP.NET (in C#, of course). He writes operating systems in C++ and assembler as a hobby.

Comments and Discussions