home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / py2s152.zip / Parser / bitset.c < prev    next >
C/C++ Source or Header  |  1999-06-27  |  3KB  |  107 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. /* Bitset primitives used by the parser generator */
  33.  
  34. #include "pgenheaders.h"
  35. #include "bitset.h"
  36.  
  37. bitset
  38. newbitset(nbits)
  39.     int nbits;
  40. {
  41.     int nbytes = NBYTES(nbits);
  42.     bitset ss = PyMem_NEW(BYTE, nbytes);
  43.     
  44.     if (ss == NULL)
  45.         Py_FatalError("no mem for bitset");
  46.     
  47.     ss += nbytes;
  48.     while (--nbytes >= 0)
  49.         *--ss = 0;
  50.     return ss;
  51. }
  52.  
  53. void
  54. delbitset(ss)
  55.     bitset ss;
  56. {
  57.     PyMem_DEL(ss);
  58. }
  59.  
  60. int
  61. addbit(ss, ibit)
  62.     bitset ss;
  63.     int ibit;
  64. {
  65.     int ibyte = BIT2BYTE(ibit);
  66.     BYTE mask = BIT2MASK(ibit);
  67.     
  68.     if (ss[ibyte] & mask)
  69.         return 0; /* Bit already set */
  70.     ss[ibyte] |= mask;
  71.     return 1;
  72. }
  73.  
  74. #if 0 /* Now a macro */
  75. int
  76. testbit(ss, ibit)
  77.     bitset ss;
  78.     int ibit;
  79. {
  80.     return (ss[BIT2BYTE(ibit)] & BIT2MASK(ibit)) != 0;
  81. }
  82. #endif
  83.  
  84. int
  85. samebitset(ss1, ss2, nbits)
  86.     bitset ss1, ss2;
  87.     int nbits;
  88. {
  89.     int i;
  90.     
  91.     for (i = NBYTES(nbits); --i >= 0; )
  92.         if (*ss1++ != *ss2++)
  93.             return 0;
  94.     return 1;
  95. }
  96.  
  97. void
  98. mergebitset(ss1, ss2, nbits)
  99.     bitset ss1, ss2;
  100.     int nbits;
  101. {
  102.     int i;
  103.     
  104.     for (i = NBYTES(nbits); --i >= 0; )
  105.         *ss1++ |= *ss2++;
  106. }
  107.