/* (c) Copyright 1987 Michael Goetz								*/
/*																			*/
/*				File:		  	break										*/
/*				Returns:	  	true if key hit						*/
/*				Parameters:												*/
/*																			*/
/*																			*/

#include <conio.h>

#include "advm.h"

int if_break()

{
	int i;
	if (i = kbhit())
		getch();
	return (i);
}

