Home | History | Annotate | Download | only in cups

Lines Matching refs:cupsFileGetChar

629  * 'cupsFileGetChar()' - Get a single character from a file.
635 cupsFileGetChar(cups_file_t *fp) /* I - CUPS file */
641 DEBUG_printf(("4cupsFileGetChar(fp=%p)", (void *)fp));
645 DEBUG_puts("5cupsFileGetChar: Bad arguments!");
653 DEBUG_printf(("5cupsFileGetChar: fp->eof=%d, fp->ptr=%p, fp->end=%p", fp->eof, (void *)fp->ptr, (void *)fp->end));
658 DEBUG_puts("5cupsFileGetChar: Unable to fill buffer!");
666 DEBUG_printf(("5cupsFileGetChar: Returning %d...", *(fp->ptr) & 255));
670 DEBUG_printf(("6cupsFileGetChar: pos=" CUPS_LLFMT, CUPS_LLCAST fp->pos));