Changeset 5967 in vbox for trunk/include
- Timestamp:
- Dec 5, 2007 5:20:24 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 26544
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/ctype.h
r4071 r5967 1 1 /** @file 2 * innotek Portable Runtime - ctype.h wrapper .2 * innotek Portable Runtime - ctype.h wrapper and ascii variants. 3 3 */ 4 4 … … 18 18 #define ___iprt_ctype_h 19 19 20 #ifdef IN_RING3 20 21 #include <ctype.h> 21 22 22 # if defined(_MSC_VER) && !defined(isblank)23 # if defined(_MSC_VER) && !defined(isblank) 23 24 /* isblank for MSC */ 24 # define isblank(ch) ( (ch) == ' ' || (ch) == '\t' ) 25 #endif 25 # define isblank(ch) ( (ch) == ' ' || (ch) == '\t' ) 26 # endif 27 #endif /* IN_RING3 */ 26 28 27 29 #endif
Note:
See TracChangeset
for help on using the changeset viewer.