Date: Wed, 24 Jun 1998 15:19:33 +0300 (IDT) From: Eli Zaretskii To: Mental Teo cc: djgpp AT delorie DOT com Subject: Re: ctrl-c In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Wed, 24 Jun 1998, Mental Teo wrote: > how can i use ctrl-c as an interupt to call a particular > function. Use the library function `signal' to install a signal handler for the SIGINT signal. In the handler, call that particular function you want to be called.