QP_tab()

Synopsis

     #include <quintus/quintus.h>
     
     int QP_tab(stream, count, c)
     QP_stream *stream;
     int        count;
     int        c;
     

Output count number of the character c on Prolog output stream stream.

Arguments


stream
pointer to a valid Prolog output stream
count
how many characters of c to be output
c
character to be written out

Examples

QP_tab(QP_curout, 5, ' ') puts 5 blank characters to the current output stream.

See Also

QP_tabto()