scanner_cis_uint.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com)
  3. * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #ifndef __PJLIB_UTIL_SCANNER_CIS_BIT_H__
  20. #define __PJLIB_UTIL_SCANNER_CIS_BIT_H__
  21. #include <pj/types.h>
  22. PJ_BEGIN_DECL
  23. /**
  24. * This describes the type of individual character specification in
  25. * #pj_cis_buf_t. Basicly the number of bits here
  26. */
  27. #ifndef PJ_CIS_ELEM_TYPE
  28. # define PJ_CIS_ELEM_TYPE int
  29. #endif
  30. /**
  31. * This describes the type of individual character specification in
  32. * #pj_cis_buf_t.
  33. */
  34. typedef PJ_CIS_ELEM_TYPE pj_cis_elem_t;
  35. /** pj_cis_buf_t is not used when uint back-end is used. */
  36. typedef int pj_cis_buf_t;
  37. /**
  38. * Character input specification.
  39. */
  40. typedef struct pj_cis_t
  41. {
  42. PJ_CIS_ELEM_TYPE cis_buf[256]; /**< Internal buffer. */
  43. } pj_cis_t;
  44. /**
  45. * Set the membership of the specified character.
  46. * Note that this is a macro, and arguments may be evaluated more than once.
  47. *
  48. * @param cis Pointer to character input specification.
  49. * @param c The character.
  50. */
  51. #define PJ_CIS_SET(cis,c) ((cis)->cis_buf[(int)(c)] = 1)
  52. /**
  53. * Remove the membership of the specified character.
  54. * Note that this is a macro, and arguments may be evaluated more than once.
  55. *
  56. * @param cis Pointer to character input specification.
  57. * @param c The character to be removed from the membership.
  58. */
  59. #define PJ_CIS_CLR(cis,c) ((cis)->cis_buf[(int)c] = 0)
  60. /**
  61. * Check the membership of the specified character.
  62. * Note that this is a macro, and arguments may be evaluated more than once.
  63. *
  64. * @param cis Pointer to character input specification.
  65. * @param c The character.
  66. */
  67. #define PJ_CIS_ISSET(cis,c) ((cis)->cis_buf[(int)c])
  68. PJ_END_DECL
  69. #endif /* __PJLIB_UTIL_SCANNER_CIS_BIT_H__ */