HomeSort by relevance Sort by last modified time
    Searched refs:cupsFileGetChar (Results 1 - 4 of 4) sorted by null

  /external/libcups/cups/
file.h 74 extern int cupsFileGetChar(cups_file_t *fp) _CUPS_API_1_2;
testfile.c 703 * cupsFileGetChar()
706 fputs("cupsFileGetChar(): ", stdout);
709 if ((byte = cupsFileGetChar(fp)) != i)
757 * cupsFileGetChar() with partial line...
760 fputs("cupsFileGetChar(partial line): ", stdout);
763 if ((byte = cupsFileGetChar(fp)) < 0)
ppd.c     [all...]
file.c 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));
    [all...]

Completed in 110 milliseconds