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 230B

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