12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /****************************************************************************
- Copyright (c) 2020 Qualcomm Technologies, Inc.
- All Rights Reserved.
- Confidential and Proprietary - Qualcomm Technologies, Inc.
- **********************************************************************/
- /*====================================================================*
- *
- * chars.h - character selection and matcing macros;
- *
- * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
- * Copyright 2001-2006 by Charles Maier Associates;
- * Licensed under the Internet Software Consortium License;
- *
- *--------------------------------------------------------------------*/
- #ifndef CHARS_HEADER
- #define CHARS_HEADER
- /*====================================================================*
- *
- *--------------------------------------------------------------------*/
- #if _MSC_VER < 1900
- #ifndef isblank
- #ifndef __CYGWIN__
- #define isblank(c) ((char)(c) == ' ') || ((char)(c) == '\t')
- #endif
- #endif
- #endif
- #ifndef nobreak
- #define nobreak(c) ((char)(c) != '\r') && ((char)(c) != '\n') && ((int)(c) != EOF)
- #endif
- #ifndef isquote
- #define isquote(c) ((char)(c) == '\'') || ((char)(c) == '\"')
- #endif
- #ifndef isslash
- #define isslash(c) ((char)(c) == '/') || ((char)(c) == '\\')
- #endif
- #ifndef isident
- #define isident(c) (isalnum (c) || ((c) == '_') || ((c) == '-') || ((c) == '.') || ((c) == ':'))
- #endif
- #ifndef isoctal
- #define isoctal(c) ((char)(c) >= '0') && ((char)(c) <= '7')
- #endif
- #ifndef nomatch
- #define nomatch(c,o) ((char)(c) != (char)(o)) && ((int)(c) != EOF)
- #endif
- #ifndef iskey
- #define iskey(c) ((int)(c) < 0x20) || ((int)(c) > 0x7E)
- #endif
- /*====================================================================*
- * end definitions;
- *--------------------------------------------------------------------*/
- #endif
|