Mathc initiation/Fichiers h : a02c


Sommaire



Installer ce fichier dans votre répertoire de travail.

z_s.h
/* ------------------------------------ */
/*  Save as :   z_s.h                   */
/* ------------------------------------ */

/* ------------------------------------ */
void clrscrn(void)
{
  printf("\n\n\n\n\n\n\n\n\n\n"
         "\n\n\n\n\n\n\n\n\n\n"
         "\n\n\n\n\n\n\n\n\n\n");
}
/* ------------------------------------ */
void stop(void)
{
 printf("\n Press return to continue. ");
 getchar();
}
/* ------------------------------------ */
int stop_w(void)
{
    printf("\n Press return to continue"
           "\n Press X      to stop    ");
     
 return(toupper(getchar())!='X');
}
/* ------------------------------------ */


La fonction clrscrn(); efface l'écran en introduisant des lignes vides.

La fonction stop(); arrête le programme.

La fonction stop_w(); arrête les boucles while() et do[]while().