You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

alert.c 197B

123456789101112131415161718
  1. #include <curses.h>
  2. #include <stdio.h>
  3. /** @file
  4. *
  5. * MuCurses alert functions
  6. *
  7. */
  8. /**
  9. * Audible signal
  10. *
  11. * @ret rc return status code
  12. */
  13. int beep ( void ) {
  14. printf("\a");
  15. return OK;
  16. }