OUTSTR (3I)     version 4.6.9     March 2022

User Intro    Prog Intro    Liste des programmes    Liste des manuels
Table of Contents


NAME

outstr, c_outstr, wrstrg, c_wrstrg - écriture d'un message

SYNOPSIS

subroutine outstr(icrlf,texte)
integer icrlf,texte

subroutine wrstrg(icrlf,texte,std)
integer icrlf,texte,std

void c_outstr(icrlf,texte)
int icrlf; char *texte;

void c_wrstrg(icrlf,texte,std)
int icrlf, std; char *texte;

DESCRIPTION

outstr, c_outstr impriment la chaine de caractères contenue dans texte sur stderr.

wrstrg, c_wrstrg impriment la chaine de caractères contenue dans texte sur stdout, si std est égal à 1, sur stderr sinon.

Si crlf est nul texte est précédé d'un "newline".

BUGS

La fin d'une chaine de caractères est soit un null, soit un '$' pour assurer la compatibilité avec les premières versions d'Inrimage.