Closes an open BITFILE and frees memory for it.
| 56 | |
| 57 | // Closes an open BITFILE and frees memory for it. |
| 58 | ILint bclose(BITFILE *BitFile) |
| 59 | { |
| 60 | if (BitFile == NULL || BitFile->File == NULL) |
| 61 | return IL_EOF; |
| 62 | |
| 63 | // Removed 01-26-2008. The file will get closed later by |
| 64 | // the calling function. |
| 65 | //icloser(BitFile->File); |
| 66 | ifree(BitFile); |
| 67 | |
| 68 | return 0; |
| 69 | } |
| 70 | |
| 71 | |
| 72 | // Returns the current bit position of a BITFILE. |
no outgoing calls