| 2649 | |
| 2650 | |
| 2651 | int lufclose(LUFILE *stream) |
| 2652 | { if (stream==NULL) return EOF; |
| 2653 | if (stream->mustclosehandle) CloseHandle(stream->h); |
| 2654 | delete stream; |
| 2655 | return 0; |
| 2656 | } |
| 2657 | |
| 2658 | int luferror(LUFILE *stream) |
| 2659 | { if (stream->is_handle && stream->herr) return 1; |
no outgoing calls
no test coverage detected