home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual 13
/
CDA13.ISO
/
cdactual
/
demobin
/
share
/
program
/
C
/
ACTLIB10.ZIP
/
TOOLS.ZIP
/
BEEP.C
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-01-14
|
353 b
|
29 lines
/* Copyright (C) 1993 Marc Stern (internet: stern@mble.philips.be) */
#include <conio.h>
#include <dos.h>
#include "tools.h"
/***
*
* Function beep : Emit a beep.
*
***/
void beep(void)
{
sound(1000);
delay(50);
nosound();
}
void buzzer(void)
{
sound(50);
delay(150);
nosound();
}