home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / C / JAZLIB.ARC / JZBEEP.C < prev    next >
Encoding:
Text File  |  1986-05-04  |  417 b   |  17 lines

  1. /*
  2. ┌────────────────────────────────────────────────────────────────────────────┐
  3. │JZBEEP                                      │
  4. │Sound the speaker in a more pleasant tone than the control G             │
  5. │                                         │
  6. │ (C) JazSoft Software by Jack A. Zucker (301) 794-5950              │
  7. └────────────────────────────────────────────────────────────────────────────┘
  8. */
  9.  
  10.  
  11. jzbeep()
  12. {
  13.   soundon(1300);
  14.   jzdelay(4L);
  15.   soundoff();
  16. }
  17.