chars.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /****************************************************************************
  2. Copyright (c) 2020 Qualcomm Technologies, Inc.
  3. All Rights Reserved.
  4. Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. **********************************************************************/
  6. /*====================================================================*
  7. *
  8. * chars.h - character selection and matcing macros;
  9. *
  10. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  11. * Copyright 2001-2006 by Charles Maier Associates;
  12. * Licensed under the Internet Software Consortium License;
  13. *
  14. *--------------------------------------------------------------------*/
  15. #ifndef CHARS_HEADER
  16. #define CHARS_HEADER
  17. /*====================================================================*
  18. *
  19. *--------------------------------------------------------------------*/
  20. #if _MSC_VER < 1900
  21. #ifndef isblank
  22. #ifndef __CYGWIN__
  23. #define isblank(c) ((char)(c) == ' ') || ((char)(c) == '\t')
  24. #endif
  25. #endif
  26. #endif
  27. #ifndef nobreak
  28. #define nobreak(c) ((char)(c) != '\r') && ((char)(c) != '\n') && ((int)(c) != EOF)
  29. #endif
  30. #ifndef isquote
  31. #define isquote(c) ((char)(c) == '\'') || ((char)(c) == '\"')
  32. #endif
  33. #ifndef isslash
  34. #define isslash(c) ((char)(c) == '/') || ((char)(c) == '\\')
  35. #endif
  36. #ifndef isident
  37. #define isident(c) (isalnum (c) || ((c) == '_') || ((c) == '-') || ((c) == '.') || ((c) == ':'))
  38. #endif
  39. #ifndef isoctal
  40. #define isoctal(c) ((char)(c) >= '0') && ((char)(c) <= '7')
  41. #endif
  42. #ifndef nomatch
  43. #define nomatch(c,o) ((char)(c) != (char)(o)) && ((int)(c) != EOF)
  44. #endif
  45. #ifndef iskey
  46. #define iskey(c) ((int)(c) < 0x20) || ((int)(c) > 0x7E)
  47. #endif
  48. /*====================================================================*
  49. * end definitions;
  50. *--------------------------------------------------------------------*/
  51. #endif